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

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
This commit is contained in:
Go MAEDA 2019-08-05 00:20:00 +00:00
parent fa2ec1505c
commit 8d87f23370
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ end
# Optional Markdown support, not for JRuby # Optional Markdown support, not for JRuby
group :markdown do group :markdown do
gem "redcarpet", "~> 3.4.0" gem "redcarpet", "~> 3.5.0"
end end
# Include database gems for the adapters found in the database # Include database gems for the adapters found in the database

View File

@ -108,13 +108,13 @@ This is some text[^1].
STR STR
expected = <<-EXPECTED 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"> <div class="footnotes">
<hr> <hr>
<ol> <ol>
<li id="fn1"> <li id="fn1">
<p>This is the foot note&nbsp;<a href="#fnref1" rev="footnote">&#8617;</a></p> <p>This is the foot note&nbsp;<a href="#fnref1">&#8617;</a></p>
</li> </li>
</ol> </ol>