packages feed

typst-0.9: test/typ/layout/enum-numbering-00.out

--- parse tree ---
[ Comment
, SoftBreak
, Code
    "typ/layout/enum-numbering-00.typ"
    ( line 2 , column 2 )
    (Set
       (Ident (Identifier "enum"))
       [ KeyValArg (Identifier "numbering") (Literal (String "(1.a.*)"))
       ])
, SoftBreak
, EnumListItem Nothing [ Text "First" ]
, SoftBreak
, EnumListItem
    Nothing
    [ Text "Second"
    , SoftBreak
    , EnumListItem
        (Just 2)
        [ Text "Nested"
        , SoftBreak
        , EnumListItem Nothing [ Text "Deep" ]
        ]
    ]
, SoftBreak
, EnumListItem Nothing [ Text "Normal" ]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 text(body: [
]), 
                 enum(children: (text(body: [First]), 
                                 { text(body: [Second
]), 
                                   enum(children: ({ text(body: [Nested
]), 
                                                     enum(children: (text(body: [Deep])), 
                                                          numbering: "(1.a.*)") }), 
                                        numbering: "(1.a.*)", 
                                        start: 2) }, 
                                 text(body: [Normal])), 
                      numbering: "(1.a.*)") })