BigW Consortium Gitlab

note_pipeline.rb 248 Bytes
Newer Older
1 2
module Banzai
  module Pipeline
3 4
    class NotePipeline < FullPipeline
      def self.transform_context(context)
5
        super(context).merge(
6 7 8 9 10 11 12
          # TableOfContentsFilter
          no_header_anchors: true
        )
      end
    end
  end
end