Quote:
Originally Posted by Skydancer
I tried this, but it doesn't work in Sigil:
Code:
Find: <p class="tibTrans">(.*?)<\/p>
Code:
Replace: <p class="tibTrans">\L$1<\/p>
|
Sigil uses the PCRE regex library; you'll need to use backslashes for backreferences.
Code:
Replace: <p class="tibTrans">\L\1<\/p>