I have a restructured text enumerated list, which I export to HTML with rst2html
:
#. My first point
#. My second, very important point
#. My third, very important point
#. My fourth point
I would like to highlight the second and third point, which are clearly very important. This is easily done with:
#. My first point
.. class:: red
#. My second, very important point
#. My third, very important point
#. My fourth point
However, this restarts the numbering (i.e. the second and forth point will be 1), while I want to continue on. Is it possible?
I have considered the inline role :red:`important point
syntax, but it doesn't fit my scenario (it's a very long list of red points, and I don't want to add the inline role to each line).