typst-0.9: test/typ/layout/list-attach-05.out
--- parse tree ---
[ Comment
, SoftBreak
, Text "Hello"
, SoftBreak
, Code
"typ/layout/list-attach-05.typ"
( line 3 , column 2 )
(FuncCall
(Ident (Identifier "list"))
[ KeyValArg (Identifier "tight") (Literal (Boolean False))
, BlockArg [ Text "A" ]
, BlockArg [ Text "B" ]
])
, SoftBreak
, Text "World"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
Hello
]),
list(children: (text(body: [A]),
text(body: [B])),
tight: false),
text(body: [
World]),
parbreak() })