Hi there !
It seems that when embedding HTML lists, the 'start' attribute has no effect.
for example, this HTML :
<ol start="10">
<li>
ten
</li>
</ol>
is supposed to be rendered as follows :
10. ten
and not as :
1. ten
Is there any other attribute / method in which I can overwrite the automated counting ?
TIA,
Nir.