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
26
27
28
|
Pandoc
Meta
{ unMeta =
fromList
[ ( "abstract"
, MetaBlocks
[ Para [ Str "Book annotation" ]
, Para [ Str "Second paragraph of book annotation" ]
]
)
, ( "author"
, MetaList
[ MetaInlines [ Str "First Middle Last" ]
, MetaInlines [ Str "Another Author" ]
]
)
, ( "date" , MetaInlines [ Str "2018" ] )
, ( "keywords"
, MetaList
[ MetaString "foo"
, MetaString "bar"
, MetaString "baz"
]
)
, ( "title" , MetaInlines [ Str "Book title" ] )
]
}
[ Header 1 ( "" , [] , [] ) [ Str "Body title" ] ]
|