You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I receive the following error on my EPUB 2 ebook: Col: 73: ERROR(RSC-005): Error while parsing file: attribute "value" not allowed here; expected attribute "dir", "id", "style", "title" or "xml:lang"
I'm using value attribute in ordered list and for some reason it's an error in EPUB 2 but not in EPUB 3. That's why I'm suspecting this is a false error.
Here's the example code:
<ol>
<li class="DecimalListStart">List example</li>
</ol>
<p class="Paragraph">Just some text.</p>
<ol>
<li class="DecimalList" value="2">List example continues</li>
</ol>
<p class="Paragraph">Just some text.</p>
<ol>
<li class="DecimalList" value="3">List example continues</li>
</ol>
<p class="Paragraph">Just some text.</p>
Aren't paragraphs allowed between ordered lists for some reason in EPUB 2 standard or what is causing the error?
The text was updated successfully, but these errors were encountered:
I receive the following error on my EPUB 2 ebook:
Col: 73: ERROR(RSC-005): Error while parsing file: attribute "value" not allowed here; expected attribute "dir", "id", "style", "title" or "xml:lang"
I'm using value attribute in ordered list and for some reason it's an error in EPUB 2 but not in EPUB 3. That's why I'm suspecting this is a false error.
Here's the example code:
Aren't paragraphs allowed between ordered lists for some reason in EPUB 2 standard or what is causing the error?
The text was updated successfully, but these errors were encountered: