diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-10 03:48:38 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-10 03:48:38 +0900 |
| commit | 50b37a8420ab106b674bab3c407c46f9cb706af4 (patch) | |
| tree | e0b79e0ee015e5ad288ba0fee808fa5bbd1f8179 | |
| parent | Fix bug (diff) | |
| download | misskey-50b37a8420ab106b674bab3c407c46f9cb706af4.tar.gz misskey-50b37a8420ab106b674bab3c407c46f9cb706af4.tar.bz2 misskey-50b37a8420ab106b674bab3c407c46f9cb706af4.zip | |
oops
| -rw-r--r-- | src/text/html.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text/html.ts b/src/text/html.ts index 4d0b4267f9..58038bc31b 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); }, |