I am using asciidoctor to generate html. I have the following list:
. one
. two
. three
image::mypic.png[]
. four
And when converted to html, it looks like this:
1. one
2. two
3. three
<my picture>
1. four
In html, I would like to see:
1. one
2. two
3. three
<my picture>
4. four
I do not want to reset the counter manually after inserting an image, because i have a hundreds of similar situations.