diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-11-03 12:02:39 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-11-03 12:02:39 +0000 |
commit | da87320ebc2a62183a7c0e161add813c7a83777c (patch) | |
tree | 4dfa046f76856e3c9d4fef6f4c7feb0cd0d8d044 /lib/redmine/preparation.rb | |
parent | 586020045be78f394c09f08b6409864c6804cd21 (diff) | |
download | redmine-da87320ebc2a62183a7c0e161add813c7a83777c.tar.gz redmine-da87320ebc2a62183a7c0e161add813c7a83777c.zip |
Updates commonmark gem version to 1.1.5 which switches from libcmark-gfm to comrak/Rust.
git-svn-id: https://svn.redmine.org/redmine/trunk@23188 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/preparation.rb')
-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 1aeb81e46..822662e11 100644 --- a/lib/redmine/preparation.rb +++ b/lib/redmine/preparation.rb @@ -408,7 +408,7 @@ module Redmine WikiFormatting.map do |format| format.register :textile - if Object.const_defined?(:CommonMarker) + if Object.const_defined?(:Commonmarker) format.register :common_mark, label: 'CommonMark Markdown (GitHub Flavored)' end end |