summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gemfile2
-rw-r--r--lib/redmine/preparation.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index e524131b6..b25fdb5a1 100644
--- a/Gemfile
+++ b/Gemfile
@@ -41,7 +41,7 @@ end
# Optional Markdown support, not for JRuby
# ToDo: Remove common_mark group when common_mark is decoupled from markdown. See defect (#36892) for more details.
-gem 'redcarpet', '~> 3.5.1', groups: [:markdown, :common_mark]
+gem 'redcarpet', '~> 3.5.1', groups: [:markdown]
# Optional CommonMark support, not for JRuby
group :common_mark do
diff --git a/lib/redmine/preparation.rb b/lib/redmine/preparation.rb
index 2ba3b5447..79f4f82ee 100644
--- a/lib/redmine/preparation.rb
+++ b/lib/redmine/preparation.rb
@@ -397,7 +397,7 @@ module Redmine
format.register :textile
format.register :markdown if Object.const_defined?(:Redcarpet)
if Object.const_defined?(:CommonMarker)
- format.register :common_mark, label: 'CommonMark Markdown (GitHub Flavored) - experimental'
+ format.register :common_mark, label: 'CommonMark Markdown (GitHub Flavored)'
end
end