typst-0.9: test/typ/layout/par-justify-02.out
--- parse tree ---
[ Comment
, SoftBreak
, Text "A"
, Space
, Text "B"
, Space
, Text "C"
, Space
, Code
"typ/layout/par-justify-02.typ"
( line 2 , column 8 )
(FuncCall
(Ident (Identifier "linebreak"))
[ KeyValArg (Identifier "justify") (Literal (Boolean True)) ])
, SoftBreak
, Text "D"
, Space
, Text "E"
, Space
, Text "F"
, Space
, Code
"typ/layout/par-justify-02.typ"
( line 3 , column 8 )
(FuncCall
(Ident (Identifier "linebreak"))
[ KeyValArg (Identifier "justify") (Literal (Boolean True)) ])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
A B C ]),
linebreak(justify: true),
text(body: [
D E F ]),
linebreak(justify: true),
parbreak() })