]> source.dussan.org Git - redmine.git/commit
Adds CommonMark Markdown (GitHub Flavored) as third text formatting option (#32424).
authorMarius Balteanu <marius.balteanu@zitec.com>
Wed, 11 Aug 2021 21:40:56 +0000 (21:40 +0000)
committerMarius Balteanu <marius.balteanu@zitec.com>
Wed, 11 Aug 2021 21:40:56 +0000 (21:40 +0000)
commit9af2ba2c13d2dc706bdf1387110c13b82175a0cf
treeeab705cebf67e7daaa30532a62dbdb1c8dfba205
parentfe4d0d93da6f95408582e53b425e89fc40751f6f
Adds CommonMark Markdown (GitHub Flavored) as third text formatting option (#32424).

Patch by Jens Krämer.

git-svn-id: http://svn.redmine.org/redmine/trunk@21156 e93f8b46-1217-0410-a6f0-8f06a7374b81
20 files changed:
Gemfile
lib/redmine.rb
lib/redmine/wiki_formatting/common_mark/external_links_filter.rb [new file with mode: 0644]
lib/redmine/wiki_formatting/common_mark/fixup_auto_links_filter.rb [new file with mode: 0644]
lib/redmine/wiki_formatting/common_mark/formatter.rb [new file with mode: 0644]
lib/redmine/wiki_formatting/common_mark/helper.rb [new file with mode: 0644]
lib/redmine/wiki_formatting/common_mark/html_parser.rb [new file with mode: 0644]
lib/redmine/wiki_formatting/common_mark/markdown_filter.rb [new file with mode: 0644]
lib/redmine/wiki_formatting/common_mark/sanitization_filter.rb [new file with mode: 0644]
lib/redmine/wiki_formatting/common_mark/syntax_highlight_filter.rb [new file with mode: 0644]
public/help/en/wiki_syntax_common_mark.html [new file with mode: 0644]
public/help/en/wiki_syntax_detailed_common_mark.html [new file with mode: 0644]
public/help/wiki_syntax_detailed.css
test/unit/lib/redmine/wiki_formatting/common_mark/application_helper_test.rb [new file with mode: 0644]
test/unit/lib/redmine/wiki_formatting/common_mark/external_links_filter_test.rb [new file with mode: 0644]
test/unit/lib/redmine/wiki_formatting/common_mark/fixup_auto_links_filter_test.rb [new file with mode: 0644]
test/unit/lib/redmine/wiki_formatting/common_mark/formatter_test.rb [new file with mode: 0644]
test/unit/lib/redmine/wiki_formatting/common_mark/markdown_filter_test.rb [new file with mode: 0644]
test/unit/lib/redmine/wiki_formatting/common_mark/sanitization_filter_test.rb [new file with mode: 0644]
test/unit/lib/redmine/wiki_formatting/common_mark/syntax_highlight_filter_test.rb [new file with mode: 0644]