diff options
author | Go MAEDA <maeda@farend.jp> | 2019-08-05 00:20:00 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-08-05 00:20:00 +0000 |
commit | 8d87f2337051c5437aa9abcdaa686b705b3b73e2 (patch) | |
tree | d4dc0f68c0908693b9bfca817202493d9e0bb36b | |
parent | fa2ec1505cd155f0c969da699d1faa1fd51b6e01 (diff) | |
download | redmine-8d87f2337051c5437aa9abcdaa686b705b3b73e2.tar.gz redmine-8d87f2337051c5437aa9abcdaa686b705b3b73e2.zip |
Update redcarpet to 3.5.0 (#31847).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18353 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | Gemfile | 2 | ||||
-rw-r--r-- | test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -36,7 +36,7 @@ end # Optional Markdown support, not for JRuby group :markdown do - gem "redcarpet", "~> 3.4.0" + gem "redcarpet", "~> 3.5.0" end # Include database gems for the adapters found in the database diff --git a/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb index a1fef6a3c..cf06c7cde 100644 --- a/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb @@ -108,13 +108,13 @@ This is some text[^1]. STR expected = <<-EXPECTED -<p>This is some text<sup id="fnref1"><a href="#fn1" rel="footnote">1</a></sup>.</p> +<p>This is some text<sup id="fnref1"><a href="#fn1">1</a></sup>.</p> <div class="footnotes"> <hr> <ol> <li id="fn1"> -<p>This is the foot note <a href="#fnref1" rev="footnote">↩</a></p> +<p>This is the foot note <a href="#fnref1">↩</a></p> </li> </ol> |