packages feed

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

--- parse tree ---
[ BulletListItem
    [ Text "First"
    , Space
    , Text "level"
    , Text "."
    , ParBreak
    , BulletListItem
        [ Text "Second"
        , Space
        , Text "level"
        , Text "."
        , SoftBreak
        , Text "There"
        , Space
        , Text "are"
        , Space
        , Text "multiple"
        , Space
        , Text "paragraphs"
        , Text "."
        , ParBreak
        , BulletListItem [ Text "Third" , Space , Text "level" , Text "." ]
        , ParBreak
        , Text "Still"
        , Space
        , Text "the"
        , Space
        , Text "same"
        , Space
        , Text "bullet"
        , Space
        , Text "point"
        , Text "."
        ]
    , ParBreak
    , BulletListItem
        [ Text "Still"
        , Space
        , Text "level"
        , Space
        , Text "2"
        , Text "."
        ]
    ]
, ParBreak
, BulletListItem
    [ Text "At" , Space , Text "the" , Space , Text "top" , Text "." ]
, ParBreak
]
--- evaluated ---
document(body: list(children: ({ text(body: [First level.]), 
                                 parbreak(), 
                                 list(children: ({ text(body: [Second level.
There are multiple paragraphs.]), 
                                                   parbreak(), 
                                                   list(children: (text(body: [Third level.]))), 
                                                   text(body: [Still the same bullet point.]) }, 
                                                 text(body: [Still level 2.]))) }, 
                               text(body: [At the top.]))))