Quote:
Originally Posted by pdurrant
But that will only fix the font size, of course. Since the ALL CAPS is hard coded, there's no way to change that (without errors) without changing the text itself.
|
Since the current Sigil version supports PCRE, it'd would be possible to use a \L backreference to change the all caps text to lower-case characters.
For example, the following regular search and replace expressions would change all caps text to lower case text:
Search:
<span class="calibre12 italic">(.*?)</span>
Replace:
<span class="italic">\L\1</span>