aboutsummaryrefslogtreecommitdiff
path: root/test/command/4465.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-06-28 11:27:37 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-06-28 11:33:22 -0700
commitdd098d4e15090d12cc71301f91a159c5bfb29b50 (patch)
treeb3cdc73ee9777337d7fd84f5171e4c0980b52e57 /test/command/4465.md
parent4a7a0cff294c48d1acd690ea593f4ab2c817ec27 (diff)
downloadpandoc-dd098d4e15090d12cc71301f91a159c5bfb29b50.tar.gz
Markdown writer: put space between Plain and following fenced Div.
Closes #4465.
Diffstat (limited to 'test/command/4465.md')
-rw-r--r--test/command/4465.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/command/4465.md b/test/command/4465.md
new file mode 100644
index 000000000..eaffcf7f3
--- /dev/null
+++ b/test/command/4465.md
@@ -0,0 +1,15 @@
+```
+% pandoc -f html -t markdown
+<ol>
+ <li>An ordered list can contain block-level elements ind html, it means that divs are also allowed.</li>
+ <li>Let's see the problem! <div class="example">This is an example.</div></li>
+</ol>
+^D
+1. An ordered list can contain block-level elements ind html, it means
+ that divs are also allowed.
+2. Let\'s see the problem!
+
+ ::: example
+ This is an example.
+ :::
+```