Quote:
Originally Posted by kovidgoyal
|
Thank you @kovidgoyal

I'll test it next release. I assume that is for the sizing, not the regex.
Let me test the regex issue a bit more. It seems simple regex work fine, but there is a more detailed one that I use that keeps failing after updating it.
I use it to find sentences that are full uppercase. Usually the first line of a chapter or new scene.
PHP Code:
</span>\b[A-Z’]+(?:\s+[A-Z]+)*\b
If I try adding some punctuation, say a comma, period or semi-colon, then it fails and I need to close and reopen the book.
PHP Code:
</span>\b[A-Z’]+(?:\s+[A-Z\.]+)*\b
The Replace portion is regex-function Title-case text (ignore tags)