Merge pull request #1266 from bolandrm/fix_at_sign

fix mentions in code blocks
This commit is contained in:
Robin Ward 2013-07-31 07:22:18 -07:00
commit 3c03920d30
2 changed files with 8 additions and 0 deletions

View File

@ -51,6 +51,9 @@ class PostAnalyzer
return @raw_mentions if @raw_mentions.present?
raw_stripped = @raw.gsub(/\[quote=(.*)\]([^\[]*?)\[\/quote\]/im, '')
# Process markdown so that code blocks can be generated and subsequently ignored
raw_stripped = PrettyText.markdown(raw_stripped)
# Strip pre and code tags
doc = Nokogiri::HTML.fragment(raw_stripped)
doc.search("pre").remove

View File

@ -188,6 +188,11 @@ describe PostAnalyzer do
post_analyzer.raw_mentions.should == ['jake']
end
it "ignores code in markdown-formatted code blocks" do
post_analyzer = PostAnalyzer.new(" @Jake @Finn\n@Ryan", default_topic_id)
post_analyzer.raw_mentions.should == ['ryan']
end
it "ignores quotes" do
post_analyzer = PostAnalyzer.new("[quote=\"Evil Trout\"]@Jake[/quote] @Finn", default_topic_id)
post_analyzer.raw_mentions.should == ['finn']