typst-0.9: test/typ/layout/container-04.out
--- parse tree ---
[ Comment
, ParBreak
, Code
"typ/layout/container-04.typ"
( line 3 , column 2 )
(Set
(Ident (Identifier "page"))
[ KeyValArg (Identifier "height") (Literal (Numeric 60.0 Pt)) ])
, ParBreak
, Text "First!"
, ParBreak
, Code
"typ/layout/container-04.typ"
( line 7 , column 2 )
(FuncCall
(Ident (Identifier "block"))
[ BlockArg
[ SoftBreak
, Text "But,"
, Space
, Text "soft!"
, Space
, Text "what"
, Space
, Text "light"
, Space
, Text "through"
, Space
, Text "yonder"
, Space
, Text "window"
, Space
, Text "breaks?"
, Space
, Text "It"
, Space
, Text "is"
, Space
, Text "the"
, Space
, Text "east,"
, Space
, Text "and"
, Space
, Text "Juliet"
, SoftBreak
, Text "is"
, Space
, Text "the"
, Space
, Text "sun"
, Text "."
, ParBreak
]
])
, ParBreak
]
--- evaluated ---
document(body: { parbreak(),
parbreak(),
text(body: [First!]),
parbreak(),
block(body: { text(body: [
But, soft! what light through yonder window breaks? It is the east, and Juliet
is the sun.]),
parbreak() }),
parbreak() })