View Single Post
Old 02-03-2017, 02:22 PM   #13
Phssthpok
Age improves with wine.
Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.
 
Posts: 596
Karma: 95229
Join Date: Nov 2014
Device: Kindle Oasis, Kobo Libra II
Quote:
Originally Posted by chaot View Post
I merged all Files Browser entries (3.9 MB), then did the instructions in #4
Why merge them? You can do S&R across all text files, or selected files, or... See the drop-down box next to the Mode drop-down.
Quote:
Originally Posted by chaot View Post
Find: <span class="small-cap">(.*?)</span><span class="small-cap">
Replace: <span class="small-cap">\1
... must be

Find: <span class="small-cap">(.*?)</span>
Replace: <span class="small-cap">\1</pan>
Er, no. Starting with this:
Code:
<span class="small-cap">x</span><span class="small-cap">y</span><span class="small-cap">z</span>
My S&R will turn this into
Code:
<span class="small-cap">xyz</span>
after 2 repetitions, while yours will turn it into
Code:
<span class="small-cap">x</pan><span class="small-cap">y</pan><span class="small-cap">z</pan>
which is invalid XHTML. You should stick to what I told you.

Last edited by Phssthpok; 02-03-2017 at 02:26 PM.
Phssthpok is offline   Reply With Quote