blob: f8d004f685ae2505d1672f0bf7fe1b357419a02a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
```
% pandoc -f gfm -s -t native
---
title: Test
---
Hi
^D
Pandoc
Meta
{ unMeta =
fromList [ ( "title" , MetaInlines [ Str "Test" ] ) ]
}
[ Para [ Str "Hi" ] ]
```
|