Quote:
Originally Posted by chaot
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
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.