Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ascii_doc_post_processing_filter.rb « filter « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9fcf057c5f41888646f6d3c400cfe9d59235e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Banzai
  module Filter
    class AsciiDocPostProcessingFilter < HTML::Pipeline::Filter
      def call
        doc.search('[data-math-style]').each do |node|
          node.set_attribute('class', 'code math js-render-math')
        end

        doc
      end
    end
  end
end