split html text in 2 paragraphs
- by Luca Romagnoli
hi i have a html text like this:
aaa dafjsld dslajfk òsal asfòljd <a href="ciao.com">aa aa</a> adsfsadfsadfs
i want to split it in 2 paragraphs. but i don't want to generate this situation:
<p>aaa dafjsld dslajfk òsal asfòljd <a href="ciao.com">aa</p><p> aa</a> adsfsadfsadfs</p>
how can i check if the split involves any tags and avoid it?
thanks