Quote:
Originally Posted by kovidgoyal
This is a bug in ADE where it incorrectly displays anchors as links. calibre used to explicitly workaround that bug, but it stopped doing that, as the workaround can break rendering in compliant epub renderers. You will have to apply the workaround manually.
Probably the following in extra css will do the trick
a { text-decoration: none; color: black; }
a[href] { text-decoration: underline; color: blue; }
or something along those lines, it's been a while since I touched ADE.
|
Thanks, Kovid. You're saying ADE has had this bug all along and they've never fixed it? (!!)
So I tried pasting those two lines into the Extra CSS section of the conversion, and it didn't help. Was I being too literal about how to apply the fix?
And instead of "color: black" could I use "color: none" to avoid messing up night-setting displays? (Assuming I could get the fix to work.)