summaryrefslogtreecommitdiff
path: root/lib/banzai/filter/inline_diff_filter.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix serious performance bug with rendering Markdown with InlineDiffFilterStan Hu2016-06-011-4/+8
| | | | | | | | | Nokogiri's `node.replace` was being unnecessarily called for every text node in the document due to a comparison bug. The code previously was comparing the HTML representation of the full document against the text node, which would always fail. Fix the comparison to just compare the modified text. Closes #18011
* Create DiffFilter and change SystemNoteService#change_title to use ↵Adam Butler2016-05-181-0/+22
Gitlab::Diff::InlineDiff