typst-0.9: test/typ/bugs/columns-1-00.out
--- parse tree ---
[ Code
"typ/bugs/columns-1-00.typ"
( line 1 , column 2 )
(Set
(Ident (Identifier "page"))
[ KeyValArg (Identifier "height") (Literal (Numeric 70.0 Pt)) ])
, ParBreak
, Text "Hallo"
, SoftBreak
, Code
"typ/bugs/columns-1-00.typ"
( line 4 , column 2 )
(FuncCall
(Ident (Identifier "columns"))
[ NormalArg (Literal (Int 2))
, BlockArg
[ SoftBreak
, Heading 1 [ Text "A" ]
, SoftBreak
, Text "Text"
, SoftBreak
, Heading 1 [ Text "B" ]
, SoftBreak
, Text "Text"
, ParBreak
]
])
, ParBreak
]
--- evaluated ---
document(body: { parbreak(),
text(body: [Hallo
]),
columns(body: { text(body: [
]),
heading(body: text(body: [A]),
level: 1),
text(body: [Text
]),
heading(body: text(body: [B]),
level: 1),
text(body: [Text]),
parbreak() },
count: 2),
parbreak() })