summaryrefslogtreecommitdiff
path: root/lib/banzai/filter/ascii_doc_post_processing_filter.rb
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