1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 15:45:58 +09:00
This commit is contained in:
syuilo 2018-06-10 03:48:38 +09:00
parent 22df795733
commit 50b37a8420

View File

@ -25,7 +25,7 @@ const handlers = {
hashtag({ document }, { hashtag }) {
const span = document.createElement('span');
span.textContent = hashtag;
span.textContent = '#' + hashtag;
document.body.appendChild(span);
},