I have an ordered list. I already know I can change the displayed index of any given term with the value
field:
<ol>
<li value=6> ... </li>
<li value=3> ... </li>
<li value=99> ... </li>
</ol>
This displays something along the lines of:
6. ...
3. ...
99. ...
when it gets parsed.
What if I want my list index to be 6.5, or some other non-integer number? When I try
<li value="6.5"> ... </li>
it still just parses as
6. ...