Quote:
Originally Posted by Doitsu
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.
|
Thank you. I will give this a go.