gitlab-org--gitlab-foss/lib/banzai/filter/ascii_doc_post_processing_f...

16 lines
314 B
Ruby

# frozen_string_literal: true
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