typst-0.9: test/typ/layout/list-06.out
--- parse tree ---
[ Comment
, SoftBreak
, BulletListItem
[ Text "A"
, Space
, Text "with"
, Space
, Text "2"
, Space
, Text "spaces"
, SoftBreak
, BulletListItem
[ Text "B"
, Space
, Text "with"
, Space
, Text "2"
, Space
, Text "tabs"
]
]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
list(children: ({ text(body: [A with 2 spaces
]),
list(children: (text(body: [B with 2 tabs]))) })) })