codeblock-after-list0
- As the authors of pandoc and PHP Markdown Extra point out
there's a conflict in using a code block after
a list,
when you don't want the code block to be part of
a list item, ie. the indentation rules
make the 2nd (and 3rd) paragraph of this text
continuation paragraphs of a list item, and there's
no way to put it at the top level, short of placing
additional top level text after the list.
Rendered HTML
<ul><li><p>As the authors of pandoc and PHP Markdown Extra point out
</p><p>there's a conflict in using a code block after
a list,
</p><p>when you don't want the code block to be part of
a list item, ie. the indentation rules
make the 2nd (and 3rd) paragraph of this text
continuation paragraphs of a list item, and there's
no way to put it at the top level, short of placing
additional top level text after the list.
</p></li></ul>
codeblock-after-list1
- To deal with the problem of codeblocks after lists,
- Pandoc's author suggest to place
<!-- an HTML comment -->
as non-visible content terminating a list
Rendered HTML
<ul><li>To deal with the problem of codeblocks after lists,
</li><li>Pandoc's author suggest to place
</li></ul><!-- an HTML comment -->
<pre><code>as non-visible content terminating a list
</code></pre>