diff --git a/src/utils/note.ts b/src/utils/note.ts
index da5197d5..8a47937a 100644
--- a/src/utils/note.ts
+++ b/src/utils/note.ts
@@ -30,7 +30,7 @@ function parseNoteContent(content: string, mentions: MastodonMention[]): ParsedN
hashtag: ({ content }) => {
const tag = content.replace(/^#/, '');
const href = Conf.local(`/tags/${tag}`);
- return html`#${tag}`;
+ return html`#${tag}`;
},
url: ({ attributes, content }) => {
try {