pandoc-3.6.4: test/command/9865.md
````
% pandoc
- example 1
- ```
one
two
```
- list item three
^D
<ul>
<li>example 1</li>
<li><pre><code>one
two</code></pre></li>
<li>list item three</li>
</ul>
````
````
% pandoc
- example 3
- ```
one
two
```
- list item three
^D
<ul>
<li>example 3</li>
<li><pre><code>one
two</code></pre></li>
<li>list item three</li>
</ul>
````
Here is a case that we used to handle differently, but
#9865 aligns pandoc's markdown parser with commonmark in letting
block level structure take precedence over inline level structure.
````
% pandoc
- a <!--
- b
-->
- c
^D
<ul>
<li><p>a <!–</p></li>
<li><p>b</p></li>
</ul>
<p>–> - c</p>
````