1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

Merged r21618 to trunk (#35892).

git-svn-id: https://svn.redmine.org/redmine/trunk@21619 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2022-05-28 18:25:49 +00:00
parent 8be29b64d8
commit ab4a055397

View File

@ -47,9 +47,9 @@ if Object.const_defined?(:CommonMarker)
end
def test_should_support_footnotes
input = %(<a href="#fn1" id="fnref1">foo</a>)
input = %(<a href="#fn-1" id="fnref-1">foo</a>)
assert_equal input, filter(input)
input = %(<ol><li id="fn1">footnote</li></ol>)
input = %(<ol><li id="fn-1">footnote</li></ol>)
assert_equal input, filter(input)
end