reveal.js: ensure that pauses work even in title slides.

Closes #5819.
This commit is contained in:
John MacFarlane
2020-02-08 09:38:07 -08:00
parent f2f559003e
commit 5f0bd52221
2 changed files with 24 additions and 4 deletions
+18
View File
@@ -0,0 +1,18 @@
```
% pandoc -t revealjs --slide-level=2
# Heading
one
. . .
two
^D
<section id="heading" class="title-slide slide level1">
<h1>Heading</h1>
<p>one</p>
<div class="fragment">
<p>two</p>
</div>
</section>
```