I have a list like this:
+ Item 1
- Subitem 1
- Subitem 2
+ Item 2
- Subitem 1
- Subitem 2
How can I control the spacing between the outer Item(s) and inner Subitem 1? The spacing
and leading
parameters don’t work for them.
I have a list like this:
+ Item 1
- Subitem 1
- Subitem 2
+ Item 2
- Subitem 1
- Subitem 2
How can I control the spacing between the outer Item(s) and inner Subitem 1? The spacing
and leading
parameters don’t work for them.
Hi @KS84, I have moved your question to the Questions category, please make sure to check the category when creating a topic that also means that you can select an answer.
I also added some tags, as it makes your question easier to find.
You mean this?
#show enum: it => {
show list: x => v(1em) + x
it
}
+ Item 1
- Subitem 1
- Subitem 2
+ Item 2
- Subitem 1
- Subitem 2
Yes! This is exactly what I was looking for. Thank you!
@SillyFreak thank you!