packages feed

typst-0.9: test/typ/layout/container-03.out

--- parse tree ---
[ Comment
, SoftBreak
, Text "Hello"
, Space
, Code
    "typ/layout/container-03.typ"
    ( line 2 , column 8 )
    (FuncCall
       (Ident (Identifier "box"))
       [ KeyValArg (Identifier "width") (Literal (Numeric 1.0 Fr))
       , NormalArg
           (FuncCall
              (Ident (Identifier "rect"))
              [ KeyValArg (Identifier "height") (Literal (Numeric 0.7 Em))
              , KeyValArg (Identifier "width") (Literal (Numeric 100.0 Percent))
              ])
       ])
, Space
, Text "World"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
Hello ]), 
                 box(body: rect(height: 0.7em, 
                                width: 100%), 
                     width: 1.0fr), 
                 text(body: [ World]), 
                 parbreak() })