packages feed

typst-0.9: test/typ/meta/cite-footnote-00.out

--- parse tree ---
[ Text "Hello"
, Space
, Ref "netwok" (Literal Auto)
, SoftBreak
, Text "And"
, Space
, Text "again"
, Text ":"
, Space
, Ref "netwok" (Literal Auto)
, ParBreak
, Code
    "typ/meta/cite-footnote-00.typ"
    ( line 4 , column 2 )
    (FuncCall (Ident (Identifier "pagebreak")) [])
, SoftBreak
, Code
    "typ/meta/cite-footnote-00.typ"
    ( line 5 , column 2 )
    (FuncCall
       (Ident (Identifier "bibliography"))
       [ NormalArg (Literal (String "/works.bib"))
       , KeyValArg (Identifier "style") (Literal (String "chicago-notes"))
       ])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [Hello ]), 
                 ref(supplement: auto, 
                     target: <netwok>), 
                 text(body: [
And again: ]), 
                 ref(supplement: auto, 
                     target: <netwok>), 
                 parbreak(), 
                 pagebreak(), 
                 text(body: [
]), 
                 bibliography(source: "/works.bib", 
                              style: "chicago-notes"), 
                 parbreak() })