diff --git a/tests/testsuite/markdown/footnotes/expected/footnotes.html b/tests/testsuite/markdown/footnotes/expected/footnotes.html
index 8904cb06..65624a62 100644
--- a/tests/testsuite/markdown/footnotes/expected/footnotes.html
+++ b/tests/testsuite/markdown/footnotes/expected/footnotes.html
@@ -7,6 +7,7 @@
Testing when referring to something earlier.
Footnote that is defined multiple times.
And another that references the duplicate again.
+Multiple footnotes in a row.
\ 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 d7719a74..bdc30f55 100644
--- a/tests/testsuite/markdown/footnotes/src/footnotes.md
+++ b/tests/testsuite/markdown/footnotes/src/footnotes.md
@@ -45,3 +45,9 @@ And another[^in-between] that references the duplicate again.[^multiple-definiti
[^in-between]: Footnote between duplicates.
[^multiple-definitions]: This is the second definition of the footnote with tag multiple-definitions
+
+Multiple footnotes in a row.[^a][^b][^c]
+
+[^a]: Footnote 1
+[^b]: Footnote 2
+[^c]: Footnote 3