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
|
Pandoc
Meta { unMeta = fromList [] }
[ Div
( "" , [ "section" ] , [] )
[ Para
[ Str "Plain,"
, Space
, Strong [ Str "strong" ]
, Str ","
, Space
, Emph [ Str "emphasis" ]
, Str ","
, Space
, Strong [ Emph [ Str "strong" , Space , Str "emphasis" ] ]
, Str ","
, Space
, Emph
[ Strong [ Str "emphasized" , Space , Str "strong" ] ]
, Str "."
]
, Para
[ Str "Strikethrough:"
, Space
, Strikeout [ Str "deleted" ]
]
, Para
[ Subscript [ Str "Subscript" ]
, Space
, Str "and"
, Space
, Superscript [ Str "superscript" ]
]
, Para [ Str "Some" , Space , Code ( "" , [] , [] ) "code" ]
]
]
|