packages feed

typst-0.9: test/typ/meta/footnote-02.out

--- parse tree ---
[ Comment
, SoftBreak
, Text "First"
, Space
, HardBreak
, Text "Second"
, Space
, Code
    "typ/meta/footnote-02.typ"
    ( line 3 , column 9 )
    (FuncCall
       (Ident (Identifier "footnote"))
       [ BlockArg
           [ Text "A,"
           , Space
           , Code
               "typ/meta/footnote-02.typ"
               ( line 3 , column 22 )
               (FuncCall
                  (Ident (Identifier "footnote"))
                  [ BlockArg
                      [ Text "B,"
                      , Space
                      , Code
                          "typ/meta/footnote-02.typ"
                          ( line 3 , column 35 )
                          (FuncCall
                             (Ident (Identifier "footnote")) [ BlockArg [ Text "C" ] ])
                      ]
                  ])
           ]
       ])
, Space
, HardBreak
, Text "Third"
, Space
, Code
    "typ/meta/footnote-02.typ"
    ( line 4 , column 8 )
    (FuncCall
       (Ident (Identifier "footnote"))
       [ BlockArg
           [ Text "D,"
           , Space
           , Code
               "typ/meta/footnote-02.typ"
               ( line 4 , column 21 )
               (FuncCall
                  (Ident (Identifier "footnote")) [ BlockArg [ Text "E" ] ])
           ]
       ])
, Space
, HardBreak
, Text "Fourth"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
First ]), 
                 linebreak(), 
                 text(body: [Second ]), 
                 footnote(body: { text(body: [A, ]), 
                                  footnote(body: { text(body: [B, ]), 
                                                   footnote(body: text(body: [C])) }) }), 
                 text(body: [ ]), 
                 linebreak(), 
                 text(body: [Third ]), 
                 footnote(body: { text(body: [D, ]), 
                                  footnote(body: text(body: [E])) }), 
                 text(body: [ ]), 
                 linebreak(), 
                 text(body: [Fourth]), 
                 parbreak() })