Add section-divs command test (failing).

This commit is contained in:
John MacFarlane
2019-12-17 11:59:52 -08:00
parent abb0e35b94
commit 204c7bb943
+25
View File
@@ -0,0 +1,25 @@
```
% pandoc --section-divs
::: {#hi .section .level1}
# Hi
::: {#there .section .level2}
## there
:::
:::
::: {#ok .section .level1}
Ok
==
:::
^D
<section id="hi" class="level1 section">
<h1>Hi</h1>
<section id="there" class="level2 section">
<h2>there</h2>
</section>
</section>
<section id="ok" class="level1 section">
<h1>Ok</h1>
</section>
```