From aa81a0cc95f894b695fb2585d8dae18b086b6cfe Mon Sep 17 00:00:00 2001 From: cel Date: Tue, 21 Feb 2017 11:11:17 -0500 Subject: Improve git commit message rendering - Render as markdown unless it looks like it is plain text - Linkify commit titles - Linkify ssb://% URLs --- lib/render-msg.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'lib/render-msg.js') 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}) -- cgit v1.2.3