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
|
```
% pandoc -f textile -t native
This list starts:
# one
# two
This list should continue at 3:
#3 three
# four
This list should restart at 1:
# one again
# two again
^D
[ Para
[ Str "This" , Space , Str "list" , Space , Str "starts:" ]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "one" ] ] , [ Plain [ Str "two" ] ] ]
, Para
[ Str "This"
, Space
, Str "list"
, Space
, Str "should"
, Space
, Str "continue"
, Space
, Str "at"
, Space
, Str "3:"
]
, OrderedList
( 3 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "three" ] ] , [ Plain [ Str "four" ] ] ]
, Para
[ Str "This"
, Space
, Str "list"
, Space
, Str "should"
, Space
, Str "restart"
, Space
, Str "at"
, Space
, Str "1:"
]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "one" , Space , Str "again" ] ]
, [ Plain [ Str "two" , Space , Str "again" ] ]
]
]
```
|