packages feed

typst-0.9: test/typ/math/content-01.out

--- parse tree ---
[ Comment
, SoftBreak
, Equation
    True
    [ Text "x"
    , Code
        "typ/math/content-01.typ"
        ( line 2 , column 5 )
        (FieldAccess
           (Ident (Identifier "eq")) (Ident (Identifier "colon")))
    , MFrac
        (Code
           "typ/math/content-01.typ"
           ( line 2 , column 9 )
           (FuncCall
              (Ident (Identifier "table"))
              [ KeyValArg (Identifier "columns") (Literal (Int 2))
              , BlockArg [ Text "x" ]
              , BlockArg [ Text "y" ]
              ]))
        (Code
           "typ/math/content-01.typ"
           ( line 2 , column 33 )
           (FuncCall
              (Ident (Identifier "mat"))
              [ BlockArg [ Text "1" ]
              , BlockArg [ Text "2" ]
              , BlockArg [ Text "3" ]
              ]))
    , Text "="
    , Code
        "typ/math/content-01.typ"
        ( line 3 , column 9 )
        (FuncCall
           (Ident (Identifier "table"))
           [ BlockArg [ Text "A" ]
           , BlockArg [ Text "B" ]
           , BlockArg [ Text "C" ]
           ])
    ]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 math.equation(block: true, 
                               body: { text(body: [x]), 
                                       text(body: [≔]), 
                                       math.frac(denom: math.mat(rows: ((text(body: [1]), 
                                                                         text(body: [2]), 
                                                                         text(body: [3])))), 
                                                 num: table(children: (text(body: [x]), 
                                                                       text(body: [y])), 
                                                            columns: 2)), 
                                       text(body: [=]), 
                                       table(children: (text(body: [A]), 
                                                        text(body: [B]), 
                                                        text(body: [C]))) }, 
                               numbering: none), 
                 parbreak() })