From 670d4efbb1c3867c8fe4c15471b310014f48f8fc Mon Sep 17 00:00:00 2001 From: Mystikfluu Date: Sat, 27 Aug 2022 19:21:10 +0200 Subject: [PATCH] fix emoji title being shown next to the emoji --- js/markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/markdown.js b/js/markdown.js index 2f01302..500079a 100644 --- a/js/markdown.js +++ b/js/markdown.js @@ -30,7 +30,7 @@ function filterMentions(text) { const emojiregex = /:([^:\s]*):/gi function emojify(text) { - return text.replace(emojiregex,"$1 title=':$1:'") + return text.replace(emojiregex,"$1") } function unemojify(text){