aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-11-30 12:53:54 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2021-11-30 12:53:54 -0800
commit619dfa2a2a19a8433424e830a21384c7b520866a (patch)
treecef94c725c67c437f6fb9b3f2851703c032ce89a /test
parent6e712fa10a9f6c2f562479acf8024f2fb529bb68 (diff)
downloadpandoc-619dfa2a2a19a8433424e830a21384c7b520866a.tar.gz
Markdown reader: don't allow `^` at beginning of link or image label.
This is reserved for footnotes. Fixes a regression introduced by 0a93acf. Closes #7723.
Diffstat (limited to 'test')
-rw-r--r--test/command/7723.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/command/7723.md b/test/command/7723.md
new file mode 100644
index 000000000..f3229eb1e
--- /dev/null
+++ b/test/command/7723.md
@@ -0,0 +1,8 @@
+```
+% pandoc -t native
+Bug![^1]
+
+[^1]: Note.
+^D
+[ Para [ Str "Bug!" , Note [ Para [ Str "Note." ] ] ] ]
+```