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