typst-0.9: test/typ/layout/list-attach-04.out
--- parse tree ---
[ Comment
, SoftBreak
, Code
"typ/layout/list-attach-04.typ"
( line 2 , column 2 )
(Set
(Ident (Identifier "block"))
[ KeyValArg (Identifier "spacing") (Literal (Numeric 15.0 Pt)) ])
, SoftBreak
, Text "Hello"
, SoftBreak
, BulletListItem [ Text "A" ]
, ParBreak
, BulletListItem [ Text "B" ]
, SoftBreak
, Text "World"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
text(body: [
Hello
]),
list(children: (text(body: [A]),
text(body: [B]))),
text(body: [World]),
parbreak() })