diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/render-msg.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js index e99a0a5..528553f 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -397,6 +397,10 @@ RenderMsg.prototype.post = function (cb) { forkLinks.map(function (a, i) { return h('div', h('small', h('span.symbol', '⑂'), ' ', a)) }), + self.c.x || self.c.y ? h('div', h('small', '[' + self.c.x + ', ' + self.c.y + ']')) : '', + self.c.tags ? h('div', h('small', 'tags: ', u.toArray(self.c.tags).map(function (tag) { + return [h('code', tag), ', '] + }))) : '', h('div.ssb-post-text', {innerHTML: self.markdown()}) ), cb) }) |