Skip to content
Snippets Groups Projects
Commit ca87bb65 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre
Browse files

Remove GollumTagsPipeline

parent 60f8434a
No related branches found
No related tags found
No related merge requests found
require 'banzai'
module Banzai
module Pipeline
class GollumTagsPipeline < BasePipeline
def self.filters
[
Filter::GollumTagsFilter
]
end
end
end
end
Loading
Loading
@@ -2,8 +2,10 @@ require 'banzai'
 
module Banzai
module Pipeline
class WikiPipeline < CombinedPipeline.new(PlainMarkdownPipeline, GollumTagsPipeline, GfmPipeline)
class WikiPipeline < FullPipeline
def self.filters
super.insert(1, Filter::GollumTagsFilter)
end
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment