1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Remove experimental flag from CommonMark text formatter (#36807).

git-svn-id: https://svn.redmine.org/redmine/trunk@21594 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2022-05-17 21:12:03 +00:00
parent 75124f4076
commit d2ed02daef
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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