gitlab-org--gitlab-foss/lib/banzai/filter/front_matter_filter.rb

21 lines
511 B
Ruby

# frozen_string_literal: true
module Banzai
module Filter
class FrontMatterFilter < HTML::Pipeline::Filter
def call
lang_mapping = Gitlab::FrontMatter::DELIM_LANG
html.sub(Gitlab::FrontMatter::PATTERN) do |_match|
lang = $~[:lang].presence || lang_mapping[$~[:delim]]
before = $~[:before]
before = "\n#{before}" if $~[:encoding].presence
"#{before}```#{lang}:frontmatter\n#{$~[:front_matter]}```\n"
end
end
end
end
end