View Single Post
Old 12-21-2023, 10:32 AM   #1
Trottel
Junior Member
Trottel began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Jan 2021
Device: POCO F2 Pro
Remove blank lines between paragraphs with the same style

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">&nbsp;</p>
<p class="style1">Line 2</p>
<p class="style1">&nbsp;</p>
<p class="style2">Line 3</p>
<p class="style2">&nbsp;</p>
<p class="style2">Line 4</p>
<p class="style2">&nbsp;</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">&nbsp;</p>
<p class="style2">Line 3</p>
<p class="style2">Line 4</p>
<p class="style2">&nbsp;</p>
<p class="style1">Line 5</p>
Trottel is offline   Reply With Quote