gitlab-org--gitlab-foss/lib/banzai/pipeline/note_pipeline.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
279 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Banzai
module Pipeline
2015-10-21 10:18:23 +00:00
class NotePipeline < FullPipeline
def self.transform_context(context)
super(context).merge(
2015-10-21 10:18:23 +00:00
# TableOfContentsFilter
no_header_anchors: true
)
end
end
end
end