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
|
[ OrderedList
( 1 , Decimal , Period )
[ [ Plain
[ Str "A"
, Space
, Str "list"
, Space
, Str "item"
, Space
, Str "(list-header)"
]
]
, [ Plain [ Str "A" , Space , Str "second" ] ]
, [ Para [ Str "A" , Space , Str "third" ]
, OrderedList
( 1 , Decimal , Period )
[ [ Para
[ Str "New"
, Space
, Str "level!"
, Space
, Str "(list-header)"
]
, OrderedList
( 1 , Decimal , Period )
[ [ Plain
[ Str "And"
, Space
, Str "another!"
, Space
, Str "(list-header)"
]
]
, [ Plain
[ Str "It's"
, Space
, Str "great"
, Space
, Str "up"
, Space
, Str "here!"
]
]
]
]
, [ Plain [ Str "Oh" , Space , Str "noes" ] ]
, [ Plain [ Str "We" , Space , Str "fell!" ] ]
]
]
, [ Plain [ Str "Maybe" , Space , Str "someone" ] ]
, [ Plain [ Str "Pushed" , Space , Str "us?" ] ]
]
, Para []
, OrderedList
( 4 , Decimal , Period )
[ [ Plain
[ Str "Start"
, Space
, Str "new"
, Space
, Str "list,"
, Space
, Str "but"
, Space
, Str "a"
, Space
, Str "different"
, Space
, Str "starting"
, Space
, Str "point."
, Space
, Str "(list-header)"
]
]
, [ Plain
[ Str "Because" , Space , Str "we" , Space , Str "can." ]
]
]
]
|