I think you can do this by running the HTML through something like tidy. An extension for this is available in PHP.
For example, suppose you had a fragment like this
<h1>hello
<table>
<tr><td>and you cut the text right here... </t
Thorny! Dangling tags and a truncation in mid-tag!
Here's what you'd get back
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 25 March 2009), see www.w3.org">
<title></title>
</head>
<body>
<h1>hello</h1>
<table>
<tr>
<td>and you cut the text right here...</td>
</tr>
</table>
</body>
</html>
Pretty impressive! Now all you need to do is just extract the repaired fragment back out of the body element.
See also the answers to PHP: Truncate HTML, ignoring tags
<b>hello<u>stack<i>overflowshould it be<b>hello</b><u>stack</u><i>overflow</i>or<b>hello<u>stack<i>overflow</i></u></b>there's no reliable way of handling this. – stillstanding Nov 26 '10 at 20:10