packages feed

typst-0.9: test/typ/layout/columns-06.out

--- parse tree ---
[ Comment
, SoftBreak
, Code
    "typ/layout/columns-06.typ"
    ( line 2 , column 2 )
    (Set
       (Ident (Identifier "page"))
       [ KeyValArg (Identifier "width") (Literal (Numeric 7.05 Cm))
       , KeyValArg (Identifier "columns") (Literal (Int 2))
       ])
, ParBreak
, Code
    "typ/layout/columns-06.typ"
    ( line 4 , column 2 )
    (FuncCall
       (Ident (Identifier "rect"))
       [ KeyValArg (Identifier "width") (Literal (Numeric 100.0 Percent))
       , KeyValArg (Identifier "inset") (Literal (Numeric 3.0 Pt))
       , BlockArg
           [ Text "So"
           , Space
           , Text "there"
           , Space
           , Text "isn"
           , Quote '\''
           , Text "t"
           , Space
           , Text "anything"
           , Space
           , Text "in"
           , Space
           , Text "the"
           , Space
           , Text "second"
           , Space
           , Text "column?"
           ]
       ])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 parbreak(), 
                 rect(body: text(body: [So there isn’t anything in the second column?]), 
                      inset: 3.0pt, 
                      width: 100%), 
                 parbreak() })