From 4fbe73455354c30e4e7e9d3f4a61dd0453671d04 Mon Sep 17 00:00:00 2001 From: ZabihollahNamazi Date: Thu, 2 Jul 2026 13:02:02 +0100 Subject: [PATCH 1/2] git ignore --- .gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index e43b0f98..a0f3a019 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,11 @@ .DS_Store +# Virtual environments +venv/ +.venv/ +env/ +.env/ +ENV/ + +# Python cache files +__pycache__/ +*.pyc From 3c219d7cfe3658c4bd562acfc988bbce3db20e99 Mon Sep 17 00:00:00 2001 From: ZabihollahNamazi Date: Thu, 2 Jul 2026 14:27:33 +0100 Subject: [PATCH 2/2] hashtag link --- 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..bcee9332 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, + /\B#[^#\s]+/g, (match) => `${match}` ); }