BigW Consortium Gitlab

note_pipeline.rb 266 Bytes
Newer Older
1
require 'banzai'
2

3 4
module Banzai
  module Pipeline
5 6
    class NotePipeline < FullPipeline
      def self.transform_context(context)
7
        super(context).merge(
8 9 10 11 12 13 14
          # TableOfContentsFilter
          no_header_anchors: true
        )
      end
    end
  end
end