File: 10328.md

package info (click to toggle)
haskell-pandoc 3.7.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 24,532 kB
  • sloc: haskell: 86,819; xml: 4,325; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 616 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Unwrap divs if they only have the `nonincremental` or `incremental` classes.

```
% pandoc --incremental --from=markdown --to=revealjs
## First slide

::: nonincremental

1.  Note 1
2.  Note 2
3.  Note 3

:::

## Second Slide

1.  Note 1
2.  Note 2
3.  Note 3
^D
<section id="first-slide" class="slide level2">
<h2>First slide</h2>
<ol type="1">
<li>Note 1</li>
<li>Note 2</li>
<li>Note 3</li>
</ol>
</section>
<section id="second-slide" class="slide level2">
<h2>Second Slide</h2>
<ol type="1">
<li class="fragment">Note 1</li>
<li class="fragment">Note 2</li>
<li class="fragment">Note 3</li>
</ol>
</section>
```