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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
```
% pandoc -f jats -t native -s
<book-part-wrapper
dtd-version="2.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:mml="http://www.w3.org/1998/Math/MathML"
xmlns:xlink="http://www.w3.org/1999/xlink">
<collection-meta>
<title-group>
<title>Balisage Series on Markup Technologies</title>
</title-group>
<abstract>
<p>The <italic>Balisage Series on Markup Technologies</italic>
is an occasional series...</p>
</abstract>
</collection-meta>
<book-meta>
<book-title-group>
<book-title>Proceedings of Balisage: The Markup Conference
2013</book-title>
</book-title-group>
<abstract>
<p>Balisage is a peer-reviewed conference...</p></abstract>
</book-meta>
</book-part-wrapper>
^D
Pandoc
Meta
{ unMeta =
fromList
[ ( "abstract"
, MetaBlocks
[ Para
[ Str "Balisage"
, Space
, Str "is"
, Space
, Str "a"
, Space
, Str "peer-reviewed"
, Space
, Str "conference..."
]
]
)
, ( "title"
, MetaInlines
[ Str "Proceedings"
, Space
, Str "of"
, Space
, Str "Balisage:"
, Space
, Str "The"
, Space
, Str "Markup"
, Space
, Str "Conference"
, SoftBreak
, Str "2013"
]
)
]
}
[ Para
[ Str "The"
, Space
, Emph
[ Str "Balisage"
, Space
, Str "Series"
, Space
, Str "on"
, Space
, Str "Markup"
, Space
, Str "Technologies"
]
, SoftBreak
, Str "is"
, Space
, Str "an"
, Space
, Str "occasional"
, Space
, Str "series..."
]
]
```
|