View Single Post
Old 01-21-2018, 04:04 AM   #10
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 47,308
Karma: 171295426
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Further looking at your code;

Code:
<p id="e1016">16. <em>The Bewitched Continuum</em>, pg. 223<a href="#ref1016" "title=return to Chapter 10">&olarr;</a></p><br>
<p id="e1017">17. &ldquo;Mrs. Stephens, Where Are You?&rdquo; (#160)<a href="#ref1017" "title=return to Chapter 10">&olarr;</a></p><br>
<p id="e1018">18. &ldquo;Samantha on Thin Ice&rdquo; (#246)<a href="#ref1018" "title=return to Chapter 10">&olarr;</a></p><br>
  1. epub3 requires every tag be terminated. So use <br /> instead of <br>.
  2. You've quoted the entire title element. Use title=" instead of "title=
  3. And again, replace the named HTML entities with their numeric equivalent.
See sample below.

Code:
<p id="e1016">16. <em>The Bewitched Continuum</em>, pg. 223<a href="#ref1016" title="return to Chapter 10">&#x21ba;</a></p><br />
<p id="e1017">17. &#x201c;Mrs. Stephens, Where Are You?&#x201d; (#160)<a href="#ref1017" title="return to Chapter 10">&#x21ba;</a></p><br />
<p id="e1018">18. &#x201c;Samantha on Thin Ice&#x201d; (#246)<a href="#ref1018" title="return to Chapter 10">&#x21ba;</a></p><br />
Best I can do for now.

Last edited by DNSB; 01-21-2018 at 04:10 AM.
DNSB is offline   Reply With Quote