From 50b37a8420ab106b674bab3c407c46f9cb706af4 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 10 Jun 2018 03:48:38 +0900 Subject: [PATCH] oops --- src/text/html.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text/html.ts b/src/text/html.ts index 4d0b4267f..58038bc31 100644 --- a/src/text/html.ts +++ b/src/text/html.ts @@ -25,7 +25,7 @@ const handlers = { hashtag({ document }, { hashtag }) { const span = document.createElement('span'); - span.textContent = hashtag; + span.textContent = '#' + hashtag; document.body.appendChild(span); },