Hi,
I just created a test ePub2 file in Sigil using various elements such as lines, ordered lists, etc. Problem is, when I try to validate in EPUB-Checker or online at IDPF, the file fails because ePub3 standards are being applied.
For example, I had to change
to
for strikethrough text. I could not apply a background color to my tables directly in the table element; I had to create a class for the color.
Most irritating of all, I cannot specify a bullet type in my lists;
for example, because "type" is not allowed here in HTML5. It also didn't like my nested list, declaring
to be disallowed, as in:
Code:
<ol>
<li>You may enter at will;</li>
<li>You may leave at will:</li>
<ol type="a">
<li>before noon;</li>
<li>or after midnight.</li>
</ol>
<li>You may forfeit entry.</li>
</ol>
Yet all not only work perfectly in Sigil and ADE, but convert nicely to Kindle in both Previewer and Previewer3.
I Googled HTML5 for lists but I cannot find anything that allows me to add a type to the list. I tried, for example, to create various classes for the usual bullets --
Code:
.circle
{list-style-type:circle;}
.disc
{list-style-type:disc;}
.a
{list-style-type:a;}
-- but to no avail.
Does anyone know either a) how to finesse lists in HTML5 OR how to force ePubCheck to apply ePub2 standards to my ePub2 file?