summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2024-02-19 12:46:43 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2024-02-19 12:46:43 -0800
commitc131f8d4bc8797164367a4c112a14e8f495a4831 (patch)
tree4b54df28e4d40fa3e9c6166c17f7fb93daab9c70 /test/command
parent54b001aa193ace3d6b0a30f8456853d0d2be38c2 (diff)
Markdown reader: fix regression in link parsing...
with wikilinks extensions. This fixes a regression introduced in 3.1.12. Closes #9481.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/9481.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/command/9481.md b/test/command/9481.md
new file mode 100644
index 000000000..552f3ddcd
--- /dev/null
+++ b/test/command/9481.md
@@ -0,0 +1,7 @@
+```
+% pandoc -f markdown+wikilinks_title_after_pipe
+[a](https://example.com)
+^D
+<p><a href="https://example.com">a</a></p>
+
+```