pandoc/test/command/3733.md
John MacFarlane 5ab1162def Markdown reader: fixed parsing of fenced code after list...
...when there is no intervening blank line.

Closes #3733.
2017-08-18 21:46:55 -07:00

13 lines
174 B
Markdown

````
% pandoc -t native
- Item1
- Item2
```yaml
some: code
```
^D
[BulletList
[[Plain [Str "Item1"]]
,[Plain [Str "Item2"]]]
,CodeBlock ("",["yaml"],[]) "some: code"]
````