Quote:
Originally Posted by nrapallo
And Mobi2IMP (really eBook Publisher) hates the Feedbooks.com encoding of some of their news fetched .mobi (like Wired: Beyond the beyond) where they insert the <a name> within the <a href>:
Code:
<a href="4.html"><a name="0000000699"></a><h3>Four Horsemen of Climate Apocalypse Rev Up their Fossil-Fueled Engines</h3></a>
I'd prefer <a name> before the <a href> for the same reason it doesn't work with the header tags if after. It's cleaner and more appropriate!
|
I've done away with the <a name=""></a> completely.
this: <h2><a name""></a>whatever</h2>
will be this: <h2 id="name">whatever</h2>
And it gives the same functionality and is even epub valid!