Closed ModProg closed 1 year ago
Well, #line-by-line
is kinda hacky anyways :sweat_smile: Maybe we should have something like #polylux-enum
, #polylux-list
and #polylux-terms
kinda like this:
#let polylux-list(start: 1, mode: "invisible", ..args) = {
let list-kwargs = args.named()
let items = args.pos()
list(
..list-kwargs,
..items.enumerate().map(((idx, item)) => uncover((beginning: idx + start), mode: mode, item))
)
}
might make sense
a non tight list like:
doesn't seam to work corrrectly, this seems to fix it, but feels a bit hacky: