How to have first line indent in a new paragraph after a math block?

First note that Typst now has a setting for indenting the first line of all paragraphs using first-line-indent: (amount: xxx, all: true):

#set par(first-line-indent: (amount: 2em, all: true))

#lorem(30)
$ A xor B dot.circle C = D^2 mod F^2 $

#lorem(30)

Now the problem is that in many cases, a block equation should not start a new paragraph. This has been discussed in this thread:

1 Like