From 383fa601eda0bf91226288586f76b99fadea1e4c Mon Sep 17 00:00:00 2001 From: Zobeir-Rigi Date: Sat, 4 Jul 2026 03:53:23 +0100 Subject: [PATCH] Fix hashtag links when followed by text --- front-end/components/bloom.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front-end/components/bloom.mjs b/front-end/components/bloom.mjs index 0b4166c3..ef0c441a 100644 --- a/front-end/components/bloom.mjs +++ b/front-end/components/bloom.mjs @@ -37,7 +37,7 @@ const createBloom = (template, bloom) => { function _formatHashtags(text) { if (!text) return text; return text.replace( - /\B#[^#]+/g, + /#[A-Za-z0-9_]+/g, (match) => `${match}` ); }