diff --git a/tests/testsuite/markdown/footnotes/expected/footnotes.html b/tests/testsuite/markdown/footnotes/expected/footnotes.html index 84b16975..28c3d94e 100644 --- a/tests/testsuite/markdown/footnotes/expected/footnotes.html +++ b/tests/testsuite/markdown/footnotes/expected/footnotes.html @@ -5,6 +5,8 @@

Footnote with multiple paragraphs4

Footnote name with wacky characters5

Testing when referring to something earlier.6

+

Footnote that is defined multiple times.7

+

And another8 that references the duplicate again.7


  1. This is a footnote. ↩2

    @@ -35,4 +37,13 @@ With a reference inside.

    This is defined before it is referred to.

  2. +
  3. +

    This is the first definition of the footnote with tag multiple-definitions ↩2

    +
  4. +
  5. +

    This is the second definition of the footnote with tag multiple-definitions ↩2

    +
  6. +
  7. +

    Footnote between duplicates.

    +
\ No newline at end of file diff --git a/tests/testsuite/markdown/footnotes/src/footnotes.md b/tests/testsuite/markdown/footnotes/src/footnotes.md index f1fbacca..d7719a74 100644 --- a/tests/testsuite/markdown/footnotes/src/footnotes.md +++ b/tests/testsuite/markdown/footnotes/src/footnotes.md @@ -35,3 +35,13 @@ Footnote name with wacky characters[^"wacky"] [^"wacky"]: Testing footnote id with special characters. Testing when referring to something earlier.[^define-before-use] + +Footnote that is defined multiple times.[^multiple-definitions] + +[^multiple-definitions]: This is the first definition of the footnote with tag multiple-definitions + +And another[^in-between] that references the duplicate again.[^multiple-definitions] + +[^in-between]: Footnote between duplicates. + +[^multiple-definitions]: This is the second definition of the footnote with tag multiple-definitions