I would like the paragraph that follows a numbered or bullet list to be indented. I have not figured out how to do so without also affecting the first paragraph after a heading, which I’d like to keep unindented as is the default. See the example below:
#set par(first-line-indent: (amount: 1em, all: false), justify: true, leading: .6em, spacing: .6em)
= Heading
#lorem(30)
+ item 1
+ item 2
+ item 3
I would like this paragraph to be indented. #lorem(30)
#show enum: it => it + v(0pt, weak: true) + par(none)
This inserts an empty paragraph after the enumeration, so the actual paragraph is not the first one anymore. The weak vertical space is used to remove the default spacing between the enum and the empty paragraph.