packages feed

typst-0.9: test/typ/layout/list-attach-02.out

--- parse tree ---
[ Comment
, SoftBreak
, Comment
, SoftBreak
, Text "Hello"
, ParBreak
, BulletListItem [ Text "A" ]
, ParBreak
, Text "World"
, SoftBreak
, BulletListItem [ Text "B" ]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 text(body: [
Hello]), 
                 parbreak(), 
                 list(children: (text(body: [A]))), 
                 text(body: [World
]), 
                 list(children: (text(body: [B]))) })