1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Pandoc
Meta { unMeta = fromList [] }
[ Div
( "" , [ "section" ] , [] )
[ Header
2 ( "" , [] , [] ) [ Str "Poem" , Space , Str "title" ]
, Div
( "" , [ "epigraph" ] , [] )
[ Para [ Str "Poem" , Space , Str "epigraph" ] ]
, Header 2 ( "" , [ "unnumbered" ] , [] ) [ Str "Subtitle" ]
, Header
2
( "" , [] , [] )
[ Str "First" , Space , Str "stanza" , Space , Str "title" ]
, LineBlock
[ [ Str "Verse" ]
, [ Emph [ Str "More" ] , Space , Str "verse" ]
]
, LineBlock
[ [ Str "One" , Space , Str "more" , Space , Str "stanza" ]
]
, Para [ Str "Author" ]
, Para [ Str "April" , Space , Str "2018" ]
]
]
|