diff --git a/app/assets/javascripts/pretty-text/engines/discourse-markdown/watched-words.js b/app/assets/javascripts/pretty-text/engines/discourse-markdown/watched-words.js index cce39254b90..ec7f26fa147 100644 --- a/app/assets/javascripts/pretty-text/engines/discourse-markdown/watched-words.js +++ b/app/assets/javascripts/pretty-text/engines/discourse-markdown/watched-words.js @@ -119,6 +119,14 @@ export function setup(helper) { continue; } + if ( + matches[ln].index > 0 && + (text[matches[ln].index - 1] === "@" || + text[matches[ln].index - 1] === "#") + ) { + continue; + } + if (matches[ln].index > lastPos) { token = new state.Token("text", "", 0); token.content = text.slice(lastPos, matches[ln].index); diff --git a/spec/components/pretty_text_spec.rb b/spec/components/pretty_text_spec.rb index cf9a2145c01..7acb5e0f3b5 100644 --- a/spec/components/pretty_text_spec.rb +++ b/spec/components/pretty_text_spec.rb @@ -1465,6 +1465,20 @@ HTML expect(PrettyText.cook("f.o")).to match_html("
test
") end + it "does not replace hashtags and mentions" do + Fabricate(:user, username: "test") + category = Fabricate(:category, slug: "test") + Fabricate(:watched_word, action: WatchedWord.actions[:replace], word: "test", replacement: "discourse") + + expect(PrettyText.cook("@test #test test")).to match_html(<<~HTML) + + HTML + end + it "supports overlapping words" do Fabricate(:watched_word, action: WatchedWord.actions[:link], word: "meta", replacement: "https://meta.discourse.org") Fabricate(:watched_word, action: WatchedWord.actions[:replace], word: "iz", replacement: "is")