this is my current show rule, i want to remove the filling for entries of level: 1. is there an easy way to do this ?
show outline: it => {
state("in-outline").update(true)
it
state("in-outline").update(false)
}
show outline.entry : it => {
if it.level == 1 {
v(0.25em)
smallcaps(strong(it))
}
else if it.level == 2 {
strong(it)
}
else {
text(style: "italic", it)
}
}
some of what i tried what i tried
// before the `v(0.25em)`
set outline(fill: none)
show outline.entry: set outline(fill: none)
set outline.entry(fill: none)
// ...
the docs say that all arguments for outline.entry()
are positional and required and i don’t know how to fill all of them.