typst-0.9: test/typ/layout/list-00.out
--- parse tree ---
[ Emph [ Text "Shopping" , Space , Text "list" ]
, SoftBreak
, Code
"typ/layout/list-00.typ"
( line 2 , column 2 )
(FuncCall
(Ident (Identifier "list"))
[ BlockArg [ Text "Apples" ]
, BlockArg [ Text "Potatoes" ]
, BlockArg [ Text "Juice" ]
])
, ParBreak
]
--- evaluated ---
document(body: { emph(body: text(body: [Shopping list])),
text(body: [
]),
list(children: (text(body: [Apples]),
text(body: [Potatoes]),
text(body: [Juice]))),
parbreak() })