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
|
[ DefinitionList
[ ( [ Str "Term" , Space , Str "1" ]
, [ [ Para [ Str "Definition" , Space , Str "1" ] ] ]
)
, ( [ Str "Term"
, Space
, Str "2"
, Space
, Str "with"
, Space
, Emph [ Str "inline" , Space , Str "markup" ]
]
, [ [ Para [ Str "Definition" , Space , Str "2" ]
, Para
[ Code
( "" , [] , [] ) "{ some code, part of Definition 2 }"
]
, Para
[ Str "Third"
, Space
, Str "paragraph"
, Space
, Str "of"
, Space
, Str "definition"
, Space
, Str "2."
]
]
]
)
]
]
|