Is it possible to remove blank lines only between paragraphs with the same style? For example, I have this code:
Code:
<p class="style1">Line 1</p>
<p class="style1"> </p>
<p class="style1">Line 2</p>
<p class="style1"> </p>
<p class="style2">Line 3</p>
<p class="style2"> </p>
<p class="style2">Line 4</p>
<p class="style2"> </p>
<p class="style1">Line 5</p>
And I want it to look like this:
Code:
<p class="style1">Line 1</p>
<p class="style1">Line 2</p>
<p class="style1"> </p>
<p class="style2">Line 3</p>
<p class="style2">Line 4</p>
<p class="style2"> </p>
<p class="style1">Line 5</p>