I was doing a page list for my accessible EPUB 3 ebook according to these instructions (
https://gold-chartreuse-795z.squares...ng-a-page-list). In one part there is Regex used:
Quote:
Create the correct code for the page breaks. This RegEx string works in oXygen XML editor:
<span class="com-rorohiko-pagestaker-style">(\d+?)</span>
<span epub:type="pagebreak" role="doc-pagebreak" id="page$1" aria-label=" Page $1\. " />
|
I tried this Regex find and replace search in Sigil and it doesn't seem to work. When I use this same Regex string in Sigil's Regex search, all I get is this:
Quote:
<span epub:type="pagebreak" role="doc-pagebreak" id="page$1" aria-label=" Page $1\. " />
|
Seems that in Sigil nothing is saved in memory when using brackets. Is there some other way to do this in Sigil? I know in the instructions Sigil is not used for this part but I would like to know why this regex string is not working in Sigil.