1
vote
4answers
181 views
Is there an easy way to convert HTML with multiple <br/> tags into proper surrounding <p> tags in Javascript?
Let's say I have a bunch of HTML like below:
bla bla bla long paragraph here
<br/>
<br/>
bla bla bla more paragraph text
<br/>
<br/>
Is the …
