Quote:
Originally Posted by church mouse
In one book I did edit it by removing the coding manually, but in the last couple of books there have been more than 200 entries per book and I do not know how to code to search and remove all the entries, so I just use a reader and app which displays correctly.
|
If you're familiar with Calibre Editor or Sigil (or another editor with
regex support), you could use regular expressions to find these kinds of tags:
will find <?pagebreak number="2"?> (and all other processing instructions).
and
Code:
<a id="p\d+>[^<]*</a>
will find <a id="p2></a>, <a id="p3>3</a>, <a id="p4>4</a> etc.