gitlab-org--gitlab-foss/lib/banzai/pipeline/asciidoc_pipeline.rb

12 lines
182 B
Ruby
Raw Normal View History

module Banzai
module Pipeline
class AsciidocPipeline < BasePipeline
def self.filters
[
Filter::RelativeLinkFilter
]
end
end
end
end