typst-0.9: test/typ/layout/align-01.out
--- parse tree ---
[ Comment
, SoftBreak
, Code
"typ/layout/align-01.typ"
( line 2 , column 2 )
(FuncCall
(Ident (Identifier "align"))
[ NormalArg (Ident (Identifier "center"))
, BlockArg
[ SoftBreak
, Text "Lorem"
, Space
, Text "Ipsum"
, ParBreak
, Text "Dolor"
, ParBreak
]
])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
align(alignment: center,
body: { text(body: [
Lorem Ipsum]),
parbreak(),
text(body: [Dolor]),
parbreak() }),
parbreak() })