aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2024-12-20 10:31:43 -0800
committerJohn MacFarlane <[email protected]>2024-12-20 10:31:43 -0800
commitcfb9bd5cf30bb67fc662b67f8645c9d6ed3d72df (patch)
tree2c33e0cb92fef8afd6b4f818c1deef7c4f19fc39 /test/command
parent74f64f33e47fa61172cc94c23a8811a6b4c6eeec (diff)
Mediawiki writer: escape line-initial characters...
...that would otherwise be interpreted as list starts. Closes #9700.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/9700.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/command/9700.md b/test/command/9700.md
new file mode 100644
index 000000000..f018164fe
--- /dev/null
+++ b/test/command/9700.md
@@ -0,0 +1,14 @@
+```
+% pandoc -t mediawiki
+This is a normal sentence with a manual text footnote\*
+
+\* The footnote explains why it couldn't just be inside parentheses
+
+\#foobar \#foobar
+^D
+This is a normal sentence with a manual text footnote*
+
+\* The footnote explains why it couldn’t just be inside parentheses
+
+\#foobar #foobar
+```