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">↺</a></p><br>
<p id="e1017">17. “Mrs. Stephens, Where Are You?” (#160)<a href="#ref1017" "title=return to Chapter 10">↺</a></p><br>
<p id="e1018">18. “Samantha on Thin Ice” (#246)<a href="#ref1018" "title=return to Chapter 10">↺</a></p><br>
- epub3 requires every tag be terminated. So use <br /> instead of <br>.
- You've quoted the entire title element. Use title=" instead of "title=
- 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">↺</a></p><br />
<p id="e1017">17. “Mrs. Stephens, Where Are You?” (#160)<a href="#ref1017" title="return to Chapter 10">↺</a></p><br />
<p id="e1018">18. “Samantha on Thin Ice” (#246)<a href="#ref1018" title="return to Chapter 10">↺</a></p><br />
Best I can do for now.