packages feed

typst-0.9: test/typ/layout/spacing-02.out

--- parse tree ---
[ Comment
, SoftBreak
, Code
    "typ/layout/spacing-02.typ"
    ( line 2 , column 2 )
    (Set
       (Ident (Identifier "text"))
       [ KeyValArg (Identifier "dir") (Ident (Identifier "rtl")) ])
, SoftBreak
, Text "A"
, Space
, Code
    "typ/layout/spacing-02.typ"
    ( line 3 , column 4 )
    (FuncCall
       (Ident (Identifier "h")) [ NormalArg (Literal (Numeric 10.0 Pt)) ])
, Space
, Text "B"
, Space
, HardBreak
, Text "A"
, Space
, Code
    "typ/layout/spacing-02.typ"
    ( line 4 , column 4 )
    (FuncCall
       (Ident (Identifier "h")) [ NormalArg (Literal (Numeric 1.0 Fr)) ])
, Space
, Text "B"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 text(body: [
A ], dir: rtl), 
                 h(amount: 10.0pt), 
                 text(body: [ B ], dir: rtl), 
                 linebreak(), 
                 text(body: [A ], dir: rtl), 
                 h(amount: 1.0fr), 
                 text(body: [ B], dir: rtl), 
                 parbreak() })