debian-mirror-gitlab/lib/banzai/filter/mermaid_filter.rb
2019-03-02 22:35:43 +05:30

15 lines
352 B
Ruby

# frozen_string_literal: true
# Generated HTML is transformed back to GFM by app/assets/javascripts/behaviors/markdown/nodes/code_block.js
module Banzai
module Filter
class MermaidFilter < HTML::Pipeline::Filter
def call
doc.css('pre[lang="mermaid"] > code').add_class('js-render-mermaid')
doc
end
end
end
end