aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-09-05 09:51:59 -0700
committerJohn MacFarlane <[email protected]>2022-09-05 09:51:59 -0700
commit86a3467ece8f6b9355f267d7cb1816e3465a56f8 (patch)
tree4e39e53603ffe22571338110c84d71e845d0cd50 /test/command
parentb9a7de32f6bd729266861ca0942cd2471a9ad2c4 (diff)
HTML writer: only treat `. . .` as a slide pause in slides...
...and not in regular HTML output. Closes #8281.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/8281.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/command/8281.md b/test/command/8281.md
new file mode 100644
index 000000000..200e74ff6
--- /dev/null
+++ b/test/command/8281.md
@@ -0,0 +1,15 @@
+```
+% pandoc -t html
+# Title
+
+test
+
+. . .
+
+test
+^D
+<h1 id="title">Title</h1>
+<p>test</p>
+<p>. . .</p>
+<p>test</p>
+```