typst-0.9: test/typ/layout/list-attach-00.out
--- parse tree ---
[ Comment
, SoftBreak
, Text "Attached"
, Space
, Text "to"
, Text ":"
, SoftBreak
, BulletListItem [ Text "the" , Space , Text "bottom" ]
, SoftBreak
, BulletListItem
[ Text "of" , Space , Text "the" , Space , Text "paragraph" ]
, ParBreak
, Text "Next"
, Space
, Text "paragraph"
, Text "."
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
Attached to:
]),
list(children: (text(body: [the bottom]),
text(body: [of the paragraph]))),
text(body: [Next paragraph.]),
parbreak() })