mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-12 04:17:16 +00:00
3952d4d1a2
This also fixes a small bug in parsing delimiters in numbered lists, which led to the default delimiter being used wrongly in some cases. Closes #8211.
19 lines
612 B
Plaintext
19 lines
612 B
Plaintext
[Header 2 ("some-nested-lists",[],[]) [Str "Some",Space,Str "nested",Space,Str "lists"]
|
|
,OrderedList (1,Decimal,Period)
|
|
[[Para [Str "one"]]
|
|
,[Para [Str "two"]
|
|
,OrderedList (1,LowerAlpha,Period)
|
|
[[Para [Str "a"]]
|
|
,[Para [Str "b"]]]]]
|
|
,BulletList
|
|
[[Para [Str "one"]]
|
|
,[Para [Str "two"]
|
|
,BulletList
|
|
[[Para [Str "three"]
|
|
,BulletList
|
|
[[Para [Str "four"]
|
|
,Para [Str "Sub",Space,Str "paragraph"]]]]]]
|
|
,[Para [Str "Same",Space,Str "list"]]]
|
|
,BulletList
|
|
[[Plain [Str "Different",Space,Str "list",Space,Str "adjacent",Space,Str "to",Space,Str "the",Space,Str "one",Space,Str "above."]]]]
|