How to disable the indent for list?

I want to use hidden bullet list for local customized paragraph space, but the indent can’t be omitted, is there any workaround? Thank!

#lorem(5)

#lorem(5)

#set list(marker: none)

- #lorem(5)
- #lorem(5)

In this case you just need to set:

#set list(marker: none, body-indent: 0em)

where body-indent represents the spacing between the marker and the body of each item.

2 Likes

I believe body-indent is the parameter that you are looking for:

#set list(marker: none, body-indent: 0pt)

- #lorem(5)
- #lorem(5)

1 Like

Thank you for pointing this out.

1 Like