Quote:
Originally Posted by jgoguen
Are the numbers handled correctly in this case?
|
Yes, they are still wrapped together.
To be more precisely, the numbers one becomes:
Code:
<span class="tcy"><span class="koboSpan" id="xxx">12</span></span>
The Access render engine actually won't make the CSS set for class="tcy" (in this case, I use ".tcy: {-epub-text-combine: horizontal}" on it) take effect on the "12" when it is wrapped again in another span, so I did have trouble on this case too. But this can be solved by writing this in kobo_extra.css:
Code:
.tcy span { -epub-text-combine: horizontal; }