Quote:
Originally Posted by stumped
I'd like to try to strip all the line and word spans from one para, to see how it looks, and as a technical challenge, before giving up and sending it back
|
Try the following:
1. Replace all
<p class="para"> with
<div class="para"> and all
</p> with
</div>
2. In Regex mode replace:
<span class="[^"]+" style="[^"]+">(.*?)</span>
with
\1
3. Replace all
<span class with
<p class and all remaining
</span> with
</p>.