aboutsummaryrefslogtreecommitdiff
path: root/lib/render-msg.js
diff options
context:
space:
mode:
authorcel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-02-21 11:11:17 -0500
committercel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-02-21 11:11:17 -0500
commitaa81a0cc95f894b695fb2585d8dae18b086b6cfe (patch)
tree07fef7140d900388cfd7589c86e8575d6b2a8706 /lib/render-msg.js
parent0ac4adbe515bf050246e466d65b3c3c77b093d6e (diff)
downloadpatchfoo-aa81a0cc95f894b695fb2585d8dae18b086b6cfe.tar.gz
patchfoo-aa81a0cc95f894b695fb2585d8dae18b086b6cfe.zip
Improve git commit message rendering
- Render as markdown unless it looks like it is plain text - Linkify commit titles - Linkify ssb://% URLs
Diffstat (limited to 'lib/render-msg.js')
-rw-r--r--lib/render-msg.js13
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js
index 8bd3661..51d094e 100644
--- a/lib/render-msg.js
+++ b/lib/render-msg.js
@@ -377,15 +377,22 @@ RenderMsg.prototype.gitUpdate = function (cb) {
h('ul', self.c.commits.map(function (commit) {
return h('li',
h('code', String(commit.sha1).substr(0, 8)), ' ',
- commit.title,
- commit.body ? h('div',
- {innerHTML: self.render.markdown('\n' + commit.body)}) : ''
+ self.linkify(String(commit.title)),
+ self.gitCommitBody(commit.body)
)
})) : ''
), cb)
})
}
+RenderMsg.prototype.gitCommitBody = function (body) {
+ if (!body) return ''
+ var isMarkdown = !/^# Conflicts:$/m.test(body)
+ return isMarkdown
+ ? h('div', {innerHTML: this.render.markdown('\n' + body)})
+ : h('pre', this.linkify('\n' + body))
+}
+
RenderMsg.prototype.gitPullRequest = function (cb) {
var self = this
var done = multicb({pluck: 1, spread: true})