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
diff options
context:
space:
mode:
authorTravis Miller <travis@travismiller.com>2018-12-08 01:05:40 +0300
committerDouwe Maan <douwe@gitlab.com>2018-12-08 01:05:40 +0300
commit17634d72ee42bf5c22f557978e1d4d7530912691 (patch)
tree055a38ddfa3ec98931f0fe551af102ba5ebc7343 /lib/banzai/pipeline
parentabeeb24c5b2db3629d627538dc2f27fb02e01f66 (diff)
Changed frontmatter filtering to support YAML, JSON, TOML, and arbitrary languages
Diffstat (limited to 'lib/banzai/pipeline')
-rw-r--r--lib/banzai/pipeline/pre_process_pipeline.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/banzai/pipeline/pre_process_pipeline.rb b/lib/banzai/pipeline/pre_process_pipeline.rb
index c937f783180..4c2b4ca1665 100644
--- a/lib/banzai/pipeline/pre_process_pipeline.rb
+++ b/lib/banzai/pipeline/pre_process_pipeline.rb
@@ -5,7 +5,7 @@ module Banzai
class PreProcessPipeline < BasePipeline
def self.filters
FilterArray[
- Filter::YamlFrontMatterFilter,
+ Filter::FrontMatterFilter,
Filter::BlockquoteFenceFilter,
]
end