typst-0.9: test/typ/layout/list-04.out
--- parse tree ---
[ BulletListItem
[ Text "A"
, SoftBreak
, BulletListItem [ Text "B" ]
, SoftBreak
, BulletListItem [ Text "C" ]
]
, SoftBreak
, BulletListItem [ Text "D" ]
, ParBreak
]
--- evaluated ---
document(body: list(children: ({ text(body: [A
]),
list(children: (text(body: [B]),
text(body: [C]))) },
text(body: [D]))))