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
|
```
% pandoc -t native
- a
- b
- c
- code
1000. one
not continuation
^D
[ BulletList
[ [ Plain [ Str "a" ]
, BulletList
[ [ Plain [ Str "b" ]
, BulletList [ [ Plain [ Str "c" ] ] ]
]
]
]
, [ CodeBlock ( "" , [] , [] ) "code" ]
]
, OrderedList
( 1000 , Decimal , Period ) [ [ Plain [ Str "one" ] ] ]
, CodeBlock ( "" , [] , [] ) "not continuation"
]
```
```
% pandoc -t native -f markdown+four_space_rule
- a
- b
- c
- not code
1000. one
continuation
^D
[ BulletList
[ [ Plain [ Str "a" ] ]
, [ Plain [ Str "b" ]
, BulletList [ [ Plain [ Str "c" ] ] ]
]
, [ CodeBlock ( "" , [] , [] ) "not code" ]
]
, OrderedList
( 1000 , Decimal , Period )
[ [ Para [ Str "one" ] , Para [ Str "continuation" ] ] ]
]
```
|