Files
gitlabhq/lib/banzai/pipeline/note_pipeline.rb
2024-04-29 18:10:24 +00:00

15 lines
285 B
Ruby

# frozen_string_literal: true
module Banzai
module Pipeline
class NotePipeline < FullPipeline
def self.transform_context(context)
super(context).merge(
# TableOfContentsLegacyFilter
no_header_anchors: true
)
end
end
end
end