Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGabriel Mazetto <gabriel@gitlab.com>2016-04-01 10:03:08 +0300
committerGabriel Mazetto <gabriel@gitlab.com>2016-04-06 09:12:39 +0300
commit61fe0a23977749b0a5dba41ca26101b4a03de720 (patch)
treeb11099156016838435ec25222ede9e061a2d0298 /lib
parent28266d9d610123d20333c6b05fcf83d1fb3e336a (diff)
Fixed WikiPipeline and specs
Diffstat (limited to 'lib')
-rw-r--r--lib/banzai/pipeline/wiki_pipeline.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/banzai/pipeline/wiki_pipeline.rb b/lib/banzai/pipeline/wiki_pipeline.rb
index 1cdb3808961..bcb89485dec 100644
--- a/lib/banzai/pipeline/wiki_pipeline.rb
+++ b/lib/banzai/pipeline/wiki_pipeline.rb
@@ -4,7 +4,7 @@ module Banzai
def self.filters
@filters ||= begin
super.insert_after(Filter::TableOfContentsFilter, Filter::GollumTagsFilter)
- .insert_after(Filter::GollumTagsFilter, Filter::WikiLinkFilter)
+ .insert_after(Filter::TableOfContentsFilter, Filter::WikiLinkFilter)
end
end
end