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
|
Pandoc
Meta { unMeta = fromList [] }
[ Para
[ Str "Regular text "
, Emph [ Str "italics" ]
, Str " "
, Strong [ Str "bold " , Emph [ Str "bold italics" ] ]
, Str "."
]
, Para
[ Str "This is "
, SmallCaps [ Str "Small Caps" ]
, Str ", and this is "
, Strikeout [ Str "strikethrough" ]
, Str "."
]
, Para
[ Str "Some people use "
, Underline
[ Str "single underlines for " , Emph [ Str "emphasis" ] ]
, Str "."
]
, Para
[ Str "Above the line is "
, Superscript [ Str "superscript" ]
, Str " and below the line is "
, Subscript [ Str "subscript" ]
, Str "."
]
, Para [ Str "A line" , LineBreak , Str "break." ]
]
|