mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Update test output to match Markdown v3 output
Markdown v3 changes slightly the generated HTML for footnotes.
This commit is contained in:
parent
9e526a825e
commit
2ef1a1895b
2 changed files with 11 additions and 8 deletions
|
|
@ -447,20 +447,23 @@ class MdReaderTest(ReaderTest):
|
|||
_path('article_with_markdown_and_footnote.md'))
|
||||
expected_content = (
|
||||
'<p>This is some content'
|
||||
'<sup id="fnref-1"><a class="footnote-ref" href="#fn-1"'
|
||||
'<sup id="fnref:1"><a class="footnote-ref" href="#fn:1"'
|
||||
' rel="footnote"'
|
||||
'>1</a></sup>'
|
||||
' with some footnotes'
|
||||
'<sup id="fnref-footnote"><a class="footnote-ref" '
|
||||
'href="#fn-footnote">2</a></sup></p>\n'
|
||||
'<sup id="fnref:footnote"><a class="footnote-ref" '
|
||||
'href="#fn:footnote" rel="footnote">2</a></sup></p>\n'
|
||||
|
||||
'<div class="footnote">\n'
|
||||
'<hr>\n<ol>\n<li id="fn-1">\n'
|
||||
'<hr>\n<ol>\n<li id="fn:1">\n'
|
||||
'<p>Numbered footnote '
|
||||
'<a class="footnote-backref" href="#fnref-1" '
|
||||
'<a class="footnote-backref" href="#fnref:1" '
|
||||
'rev="footnote" '
|
||||
'title="Jump back to footnote 1 in the text">↩</a></p>\n'
|
||||
'</li>\n<li id="fn-footnote">\n'
|
||||
'</li>\n<li id="fn:footnote">\n'
|
||||
'<p>Named footnote '
|
||||
'<a class="footnote-backref" href="#fnref-footnote"'
|
||||
'<a class="footnote-backref" href="#fnref:footnote"'
|
||||
' rev="footnote"'
|
||||
' title="Jump back to footnote 2 in the text">↩</a></p>\n'
|
||||
'</li>\n</ol>\n</div>')
|
||||
expected_metadata = {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
mock
|
||||
|
||||
# Optional Packages
|
||||
Markdown
|
||||
Markdown >= 3.0
|
||||
BeautifulSoup4
|
||||
lxml
|
||||
typogrify
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue