summaryrefslogtreecommitdiff
path: root/lib/banzai/suggestions_parser.rb
blob: 0d7f751bfc1aac66c2b30cde024009f2db2c8be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

# TODO: Delete when https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/26107
# exchange this parser by `Gitlab::Diff::SuggestionsParser`.
module Banzai
  module SuggestionsParser
    # Returns the content of each suggestion code block.
    #
    def self.parse(text)
      html = Banzai.render(text, project: nil, no_original_data: true)
      doc = Nokogiri::HTML(html)

      doc.search('pre.suggestion').map { |node| node.text }
    end
  end
end