I have a large html file of a story.
The <p>
tags are not closed, for example:
<p> First paragraph
<p> Second paragraph
I would like to have a proper XHTML document:
<p> First paragraph</p>
<p> Second paragraph</p>
Can I achieve this with jQuery?
Thanks