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:
Diffstat (limited to 'lib/banzai/filter/front_matter_filter.rb')
-rw-r--r--lib/banzai/filter/front_matter_filter.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/banzai/filter/front_matter_filter.rb b/lib/banzai/filter/front_matter_filter.rb
index c788137e122..53683ce07d9 100644
--- a/lib/banzai/filter/front_matter_filter.rb
+++ b/lib/banzai/filter/front_matter_filter.rb
@@ -6,13 +6,13 @@ module Banzai
def call
lang_mapping = Gitlab::FrontMatter::DELIM_LANG
- html.sub(Gitlab::FrontMatter::PATTERN) do |_match|
- lang = $~[:lang].presence || lang_mapping[$~[:delim]]
+ Gitlab::FrontMatter::PATTERN_UNTRUSTED_REGEX.replace_gsub(html) do |match|
+ lang = match[:lang].presence || lang_mapping[match[:delim]]
- before = $~[:before]
- before = "\n#{before}" if $~[:encoding].presence
+ before = match[:before]
+ before = "\n#{before}" if match[:encoding].presence
- "#{before}```#{lang}:frontmatter\n#{$~[:front_matter]}```\n"
+ "#{before}```#{lang}:frontmatter\n#{match[:front_matter]}```\n"
end
end
end