packages feed

typst-0.9: test/typ/layout/list-05.out

--- parse tree ---
[ Comment
, SoftBreak
, BulletListItem
    [ Text "A"
    , Space
    , Text "with"
    , Space
    , Text "1"
    , Space
    , Text "tab"
    , SoftBreak
    , BulletListItem
        [ Text "B"
        , Space
        , Text "with"
        , Space
        , Text "2"
        , Space
        , Text "tabs"
        ]
    ]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 list(children: ({ text(body: [A with 1 tab
]), 
                                   list(children: (text(body: [B with 2 tabs]))) })) })