pandoc/test/command/multiple-metadata-blocks.md

20 lines
222 B
Markdown
Raw Normal View History

If multiple blocks define a field, the first is used.
```
% pandoc -s -t native
---
foo: bar
...
---
foo: bim
...
^D
Pandoc
Meta
{ unMeta =
fromList [ ( "foo" , MetaInlines [ Str "bim" ] ) ]
}
[]
```