blob: b156d1f50662b1e34c07107a1666a413591eb5be (
plain)
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
|
Pandoc
Meta { unMeta = fromList [] }
[ OrderedList
( 1 , Decimal , OneParen )
[ [ Para [ Str "This is at the first level" ]
, OrderedList
( 1 , LowerAlpha , DefaultDelim )
[ [ Para [ Str "This is at the second level" ]
, OrderedList
( 1 , LowerRoman , DefaultDelim )
[ [ Para
[ Str "This is "
, Emph
[ Str "at "
, Strong [ Str "the third level" ]
, Str ", and I want to"
]
, Str " test normalization here."
]
]
]
]
]
]
]
]
|