62f46b3995
A regression in 2.14 led to the document body being omitted after YAML metadata in some cases. This is now fixed. Closes #7339.
11 lines
153 B
Markdown
11 lines
153 B
Markdown
```
|
|
% pandoc -f gfm -s -t native
|
|
---
|
|
title: Test
|
|
---
|
|
|
|
Hi
|
|
^D
|
|
Pandoc (Meta {unMeta = fromList [("title",MetaInlines [Str "Test"])]})
|
|
[Para [Str "Hi"]]
|
|
```
|