aboutsummaryrefslogtreecommitdiff
path: root/test/command/section-divs.md
blob: 5ee28bba875bbef9a7ceaa92d01f2416b4b1c7f2 (plain)
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
```
% pandoc  --section-divs
::: {#hi .section .level1}
# Hi

::: {#there .section .level2}
## there
:::
:::

::: {#ok .section .level1}
Ok
==
:::
^D
<section id="hi" class="level1">
<h1>Hi</h1>
<section id="there" class="level2">
<h2>there</h2>
</section>
</section>
<section id="ok" class="level1">
<h1>Ok</h1>
</section>
```