summaryrefslogtreecommitdiff
path: root/lib/banzai/pipeline/asciidoc_pipeline.rb
blob: 5e76a817be512e619a63bff9c70adbe717306d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'banzai'

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