packages feed

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

--- parse tree ---
[ Comment
, SoftBreak
, Code
    "typ/layout/list-attach-01.typ"
    ( line 2 , column 2 )
    (Show
       (Just (Ident (Identifier "list")))
       (Set
          (Ident (Identifier "block"))
          [ KeyValArg (Identifier "above") (Literal (Numeric 100.0 Pt)) ]))
, SoftBreak
, Text "Hello"
, SoftBreak
, BulletListItem [ Text "A" ]
, SoftBreak
, Text "World"
, SoftBreak
, BulletListItem [ Text "B" ]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 text(body: [
Hello
]), 
                 list(children: (text(body: [A]))), 
                 text(body: [World
]), 
                 list(children: (text(body: [B]))) })