gitlab-org--gitlab-foss/lib/banzai/pipeline/wiki_pipeline.rb
Douglas Barbosa Alexandre ca87bb652a Remove GollumTagsPipeline
2016-01-14 12:09:31 -02:00

11 lines
189 B
Ruby

require 'banzai'
module Banzai
module Pipeline
class WikiPipeline < FullPipeline
def self.filters
super.insert(1, Filter::GollumTagsFilter)
end
end
end
end