aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-07-04 14:24:57 +0200
committerJohn MacFarlane <[email protected]>2022-07-04 14:34:14 +0200
commitbefa9d130181ff99d155a6df454c40fba0d9736a (patch)
tree8c58ad92b73918f1e476148d036abae3a72a2023 /test/command
parentf2f9c896eee80d2f7cb60ed7e5d4d27cf2dacd0b (diff)
Ensure that Nulls are ignored in creating slide shows.
Also ensure that Nulls are ignored in sectionification by `makeSections`. Closes #8155.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/8155.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/command/8155.md b/test/command/8155.md
new file mode 100644
index 000000000..966bff871
--- /dev/null
+++ b/test/command/8155.md
@@ -0,0 +1,19 @@
+```
+% pandoc -f native -t revealjs
+[ Null
+, Header
+ 2
+ ( "header-after-null" , [] , [] )
+ [ Str "Header"
+ , Space
+ , Str "after"
+ , Space
+ , Str "null"
+ ]
+]
+^D
+<section id="header-after-null" class="title-slide slide level2">
+<h2>Header after null</h2>
+
+</section>
+```