summaryrefslogtreecommitdiffstats
path: root/lib/redmine
diff options
context:
space:
mode:
Diffstat (limited to 'lib/redmine')
-rw-r--r--lib/redmine/wiki_formatting/common_mark/formatter.rb3
-rw-r--r--lib/redmine/wiki_formatting/common_mark/markdown_filter.rb6
2 files changed, 8 insertions, 1 deletions
diff --git a/lib/redmine/wiki_formatting/common_mark/formatter.rb b/lib/redmine/wiki_formatting/common_mark/formatter.rb
index 1a705bd73..2eee19fa3 100644
--- a/lib/redmine/wiki_formatting/common_mark/formatter.rb
+++ b/lib/redmine/wiki_formatting/common_mark/formatter.rb
@@ -43,6 +43,9 @@ module Redmine
unsafe: true,
hardbreaks: Redmine::Configuration['common_mark_enable_hardbreaks'] == true ? true : false,
}.freeze,
+ commonmarker_plugins: {
+ syntax_highlighter: nil
+ }.freeze,
}.freeze
MarkdownPipeline = HTML::Pipeline.new [
diff --git a/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb b/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb
index abde25443..0b7f52ea3 100644
--- a/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb
+++ b/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb
@@ -36,7 +36,7 @@ module Redmine
extension: extensions,
render: render_options,
parse: parse_options
- })
+ }, plugins: plugins )
html.rstrip!
html
@@ -55,6 +55,10 @@ module Redmine
def render_options
context.fetch :commonmarker_render_options, {}
end
+
+ def plugins
+ context.fetch :commonmarker_plugins, {}
+ end
end
end
end