packages feed

typst-0.9: test/typ/layout/grid-auto-shrink-00.out

--- parse tree ---
[ Code
    "typ/layout/grid-auto-shrink-00.typ"
    ( line 1 , column 2 )
    (Set
       (Ident (Identifier "page"))
       [ KeyValArg
           (Identifier "width")
           (Plus
              (Minus
                 (Literal (Numeric 210.0 Mm))
                 (Times (Literal (Int 2)) (Literal (Numeric 2.5 Cm))))
              (Times (Literal (Int 2)) (Literal (Numeric 10.0 Pt))))
       ])
, SoftBreak
, Code
    "typ/layout/grid-auto-shrink-00.typ"
    ( line 2 , column 2 )
    (Set
       (Ident (Identifier "text"))
       [ NormalArg (Literal (Numeric 11.0 Pt)) ])
, SoftBreak
, Code
    "typ/layout/grid-auto-shrink-00.typ"
    ( line 3 , column 2 )
    (FuncCall
       (Ident (Identifier "table"))
       [ KeyValArg (Identifier "columns") (Literal (Int 4))
       , NormalArg (Block (Content [ Text "Hello!" ]))
       , NormalArg
           (Block
              (Content
                 [ Text "Hello"
                 , Space
                 , Text "there,"
                 , Space
                 , Text "my"
                 , Space
                 , Text "friend!"
                 ]))
       , NormalArg
           (Block
              (Content
                 [ Text "Hello"
                 , Space
                 , Text "there,"
                 , Space
                 , Text "my"
                 , Space
                 , Text "friends!"
                 , Space
                 , Text "Hi!"
                 ]))
       , NormalArg
           (Block
              (Content
                 [ Text "Hello"
                 , Space
                 , Text "there,"
                 , Space
                 , Text "my"
                 , Space
                 , Text "friends!"
                 , Space
                 , Text "Hi!"
                 , Space
                 , Text "What"
                 , Space
                 , Text "is"
                 , Space
                 , Text "going"
                 , Space
                 , Text "on"
                 , Space
                 , Text "right"
                 , Space
                 , Text "now?"
                 ]))
       ])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 text(body: [
], 
                      size: 11.0pt), 
                 table(children: (text(body: [Hello!], 
                                       size: 11.0pt), 
                                  text(body: [Hello there, my friend!], 
                                       size: 11.0pt), 
                                  text(body: [Hello there, my friends! Hi!], 
                                       size: 11.0pt), 
                                  text(body: [Hello there, my friends! Hi! What is going on right now?], 
                                       size: 11.0pt)), 
                       columns: 4), 
                 parbreak() })