typst-0.9: test/typ/layout/enum-numbering-01.out
--- parse tree ---
[ Comment
, SoftBreak
, Code
"typ/layout/enum-numbering-01.typ"
( line 2 , column 2 )
(Set
(Ident (Identifier "enum"))
[ KeyValArg (Identifier "numbering") (Literal (String "1.a."))
, KeyValArg (Identifier "full") (Literal (Boolean True))
])
, SoftBreak
, EnumListItem
Nothing
[ Text "First"
, SoftBreak
, EnumListItem Nothing [ Text "Nested" ]
]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
text(body: [
]),
enum(children: ({ text(body: [First
]),
enum(children: (text(body: [Nested])),
full: true,
numbering: "1.a.") }),
full: true,
numbering: "1.a.") })