packages feed

typst-0.9: test/typ/text/emphasis-02.out

--- parse tree ---
[ Comment
, SoftBreak
, Text "Normal"
, ParBreak
, Code
    "typ/text/emphasis-02.typ"
    ( line 4 , column 2 )
    (Set
       (Ident (Identifier "strong"))
       [ KeyValArg (Identifier "delta") (Literal (Int 300)) ])
, SoftBreak
, Strong [ Text "Bold" ]
, ParBreak
, Code
    "typ/text/emphasis-02.typ"
    ( line 7 , column 2 )
    (Set
       (Ident (Identifier "strong"))
       [ KeyValArg (Identifier "delta") (Literal (Int 150)) ])
, SoftBreak
, Strong [ Text "Medium" ]
, Space
, Text "and"
, Space
, Strong
    [ Code
        "typ/text/emphasis-02.typ"
        ( line 8 , column 16 )
        (Block (Content [ Strong [ Text "Bold" ] ]))
    ]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
Normal]), 
                 parbreak(), 
                 text(body: [
]), 
                 strong(body: text(body: [Bold]), 
                        delta: 300), 
                 parbreak(), 
                 text(body: [
]), 
                 strong(body: text(body: [Medium]), 
                        delta: 150), 
                 text(body: [ and ]), 
                 strong(body: strong(body: text(body: [Bold]), 
                                     delta: 150), 
                        delta: 150), 
                 parbreak() })