Validation: attribute 'start' is not declared for element 'ol'
I get the above mentioned validation message in Sigil, why is start not allowed here?
The corresponding line is
<ol start="14">
<li>something
It's valid html and does exactly what it should, output:
14 something
If I do it the other way
<ol>
<li value="14">something
the result is also correct, but the validation analog shows "value not allowed for li"
Why are those wrong and how do I do it right?
|