BigW Consortium Gitlab

atom_pipeline.rb 230 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
module Banzai
  module Pipeline
    class AtomPipeline < FullPipeline
      def self.transform_context(context)
        super(context).merge(
          only_path: false,
          xhtml: true
        )
      end
    end
  end
end