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

asciidoc_pipeline.rb « pipeline « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1331c0ebf94567948a2474b604c2db16e834d3f (plain)
1
2
3
4
5
6
7
8
9
10
11
module Banzai
  module Pipeline
    class AsciidocPipeline < BasePipeline
      def self.filters
        [
          Filter::RelativeLinkFilter
        ]
      end
    end
  end
end