From be113e1c72a32145cc15cde37f6ec9447dc4496d Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 11 Feb 2017 08:49:50 +0900 Subject: #150 --- src/web/app/common/scripts/text-compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/app/common/scripts') diff --git a/src/web/app/common/scripts/text-compiler.js b/src/web/app/common/scripts/text-compiler.js index 29b700e628..25f36382fb 100644 --- a/src/web/app/common/scripts/text-compiler.js +++ b/src/web/app/common/scripts/text-compiler.js @@ -27,7 +27,7 @@ module.exports = function(tokens, shouldBreak, shouldEscape) { case 'link': return ''; case 'mention': - return '' + token.content + ''; + return '' + token.content + ''; case 'hashtag': // TODO return '' + escape(token.content) + ''; case 'code': -- cgit v1.2.3-freya