I'd like to create the typical preview paragraph with a [read more] link. Problem is, the content that I'd like to SubString() contains text and html, written by a user with a WYSIWYG editor.
Of course, I check to make sure the string is not null or empty, then SubString() it, problem is that I could end up breaking the html tags, throwing off the rendering of the entire site.
The WYSIWYG editor doesn't seem to create perfectly formatted HTML, and many times seems to use <br />
tags instead of <p></p>
, etc... basically, I can't rely on well-formed tags, etc.
My workaround was to just strip out all HTML and substring the leftover text. This works, but loses any of the formatting that was in the HTML.
What's the best method of SubString()'ing a block of non-well-formed HTML while maintaining HTML that won't break the rendering of the site?