packages feed

typst-0.9: test/typ/layout/place-01.out

--- parse tree ---
[ Comment
, SoftBreak
, Code
    "typ/layout/place-01.typ"
    ( line 2 , column 2 )
    (Set
       (Ident (Identifier "page"))
       [ NormalArg (Literal (String "a8"))
       , KeyValArg (Identifier "height") (Literal (Numeric 60.0 Pt))
       ])
, ParBreak
, Text "First"
, ParBreak
, Code
    "typ/layout/place-01.typ"
    ( line 6 , column 2 )
    (FuncCall
       (Ident (Identifier "place"))
       [ NormalArg
           (Plus (Ident (Identifier "bottom")) (Ident (Identifier "right")))
       , BlockArg [ Text "Placed" ]
       ])
, ParBreak
, Text "Second"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 parbreak(), 
                 text(body: [First]), 
                 parbreak(), 
                 place(alignment: Axes(right, bottom), 
                       body: text(body: [Placed])), 
                 parbreak(), 
                 text(body: [Second]), 
                 parbreak() })