From 72454f8d11866e249e313348f9e7998dc3a3f33e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Mon, 8 Feb 2021 10:12:54 +0900 Subject: [PATCH] chore: removed debug code --- utils/ShowdownExtensions.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils/ShowdownExtensions.ts b/utils/ShowdownExtensions.ts index 34a4e27..ae944b8 100644 --- a/utils/ShowdownExtensions.ts +++ b/utils/ShowdownExtensions.ts @@ -24,10 +24,8 @@ export const twemoji = { regex: `${Emoji}{2}|${Emoji}`, replace: function(__match: string, two: string, one: string) { const parsed = __match || two || one - console.log(parsed) const emoj = Twemoji.parse(parsed, { folder: 'svg', ext: '.svg' }) if(!emoj) return parsed - console.log(emoj) return emoj } }