From d836a7eb72077632e1e4dc5204e3c50959f1e525 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 18 Aug 2023 03:31:25 -0400 Subject: [PATCH] htmlify hashtags --- src/render/instantview.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 2dd7da1..b67cc46 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -50,6 +50,14 @@ const htmlifyLinks = (input: string): string => { }); } +const htmlifyHashtags = (input: string): string => { + const hashtagPattern = /#([a-zA-Z_]\w*)/g; + return input.replace(hashtagPattern, (match, hashtag) => { + const encodedHashtag = encodeURIComponent(hashtag); + return `${match}`; + }); +} + export const renderInstantView = (properties: RenderProperties): ResponseInstructions => { console.log('Generating Instant View (placeholder)...'); const { tweet } = properties; @@ -64,8 +72,9 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc ]; let text = sanitizeText(tweet.text).replace(/\n/g, '
'); - text = populateUserLinks(tweet, text); text = htmlifyLinks(text); + text = htmlifyHashtags(text); + text = populateUserLinks(tweet, text); instructions.text = `