typst-0.9: test/typ/text/space-04.out
--- parse tree ---
[ Comment
, SoftBreak
, Code
"typ/text/space-04.typ"
( line 2 , column 2 )
(FuncCall
(Ident (Identifier "align"))
[ NormalArg (Ident (Identifier "center"))
, BlockArg
[ Text "A"
, Space
, HardBreak
, Text "B"
, Space
, HardBreak
, Text "C"
]
])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
align(alignment: center,
body: { text(body: [A ]),
linebreak(),
text(body: [B ]),
linebreak(),
text(body: [C]) }),
parbreak() })