From f9d1eed4dd86ae3fe4ced018b163ee49b963673d Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 28 Aug 2024 19:46:19 +0200 Subject: [PATCH] Remove unnecessary escape characters --- src/utils/note.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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``; }, url: ({ attributes, content }) => { try {