````
% pandoc
- example 1
- ```
one
two
```
- list item three
^D
- example 1
one
two
- list item three
````
````
% pandoc
- example 3
- ```
one
two
```
- list item three
^D
- example 3
one
two
- list item three
````
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
- c
^D
–> - c
````