Beta 3 with the revised footnote clips works well on my linux box. All the ref no's and highlighted text were correctly placed.
When you have several footnotes at the end of a chapter, having each one wrapped in <div> tags makes for an ugly load of code. If the
Code:
<div id="fn2" epub:type="footnote" role="doc-footnote">
could be placed in the <p> tag and a second lot of <div> tags eliminated, it would be much neater. For example,
Code:
<div>
<p id="fn1" epub:type="footnote" role="doc-footnote">
<a href="#ref_fn1" epub:type="backlink" role="doc-backlink">[1]</a>
TEXT_OF_FOOTNOTE_HERE
</p>
<p id="fn2" epub:type="footnote" role="doc-footnote">
<a href="#ref_fn2" epub:type="backlink" role="doc-backlink">[2]</a>
for more info on this item, look at chapter 6
</p>
</div>
I've tried it out with a couple of footnotes inside a single set of <div> tags and with the id's in the <p> tags and EpubCheck lets it pass ok.
Would that violate any rules?