Welcome to mirror list, hosted at ThFree Co, Russian Federation.

atom_pipeline.rb « pipeline « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 957f352aec5f2d149e89db0b09ee041b0b5da759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'banzai'

module Banzai
  module Pipeline
    class AtomPipeline < FullPipeline
      def self.transform_context(context)
        super(context).merge(
          only_path: false,
          xhtml: true
        )
      end
    end
  end
end