improved reply-to link rendering with an inline markdown mode

This commit is contained in:
Paul Frazee
2015-10-05 14:27:48 -05:00
parent fec80af244
commit 17dad73802
2 changed files with 40 additions and 7 deletions

View File

@@ -384,7 +384,7 @@ function fetchAndRenderReplyLink (msg) {
var text = '@' + com.userName(msg.author)
if (msg.content.text && typeof msg.content.text == 'string')
text += ': ' + msg.content.text
text += ': ' + markdown.inline(msg.content.text)
if (text.length > 60)
text = text.slice(0, 57) + '...'