When embedding HTML with an ordered list with a specific starting value, the numbering still starts at one. So something like:
<ol><li value="3">Item 3</li></ol>
Shows up numbered as 1 instead of 3. Is there something we can do to make it obey the value attribute to start numbering?
Thanks.