diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-05-17 21:12:03 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-05-17 21:12:03 +0000 |
commit | d2ed02daeff795f5bbe15d828f95e6d4b7928071 (patch) | |
tree | 2dcf633e7a5449adec1996b6b996c9f62fe1ca7b /lib | |
parent | 75124f407664b0efebfa736564acb47c44068538 (diff) | |
download | redmine-d2ed02daeff795f5bbe15d828f95e6d4b7928071.tar.gz redmine-d2ed02daeff795f5bbe15d828f95e6d4b7928071.zip |
Remove experimental flag from CommonMark text formatter (#36807).
git-svn-id: https://svn.redmine.org/redmine/trunk@21594 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/preparation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |