aboutsummaryrefslogtreecommitdiff
path: root/lib/render-msg.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/render-msg.js')
-rw-r--r--lib/render-msg.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js
index 2f7216a..d76f126 100644
--- a/lib/render-msg.js
+++ b/lib/render-msg.js
@@ -668,7 +668,8 @@ RenderMsg.prototype.about = function (cb) {
'starting at ', dateTime(this.c.startDateTime)) : '',
this.c.endDateTime ? h('div',
'ending at ', dateTime(this.c.endDateTime)) : '',
- this.c.location ? h('div', 'at ', String(this.c.location)) : '',
+ this.c.location ? h('div', 'at ', h('span',
+ {innerHTML: u.unwrapP(this.render.markdown(this.c.location))})) : '',
img ? h('a', {href: this.toUrl(img)},
h('img.ssb-avatar-image', {
src: this.render.imageUrl(img),