diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-12-17 10:17:51 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-12-17 11:59:52 -0800 |
commit | 204c7bb943d712690911af869161e8c66789bc53 (patch) | |
tree | feafc90ab8d01c847db530cba6a0e9ca4fc64282 | |
parent | abb0e35b940686fd01e70d79bab4221372eb8c16 (diff) | |
download | pandoc-204c7bb943d712690911af869161e8c66789bc53.tar.gz |
Add section-divs command test (failing).
-rw-r--r-- | test/command/section-divs.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/command/section-divs.md b/test/command/section-divs.md new file mode 100644 index 000000000..6e2412e04 --- /dev/null +++ b/test/command/section-divs.md @@ -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> +``` |