View Single Post
Old 03-31-2014, 05:12 AM   #2
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,233
Karma: 27110894
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
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.
kovidgoyal is offline   Reply With Quote