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

14 lines
200 B
Ruby
Raw Normal View History

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