I’d like to enclose the contents of each item in a nested numbered list in a colored box, leaving the number out of the box. I tried:
+ aaa
+ bbb
+ ccc
+ ddd
#set enum(
full: true,
)
#show enum.item: box.with(
width: 100%,
stroke: 1pt + red,
radius: 3pt,
inset: 6pt,
)
+ aaa
+ bbb
+ ccc
+ ddd
Which yields this below (surprisingly to me, the numbering is also now broken). Why is that, and can I enclose just the content/body of each node?

