I have installed HtmlAgilityPack via NuGet and it installed version 1.4.3
This version has an error when handling tables!
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>hap test table</title>
</head>
<body>
<table>
<tr>
<td>foo</td>
<td>bar</td>
</tr>
</table>
</body>
</html>
becomes
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>hap test table</title>
</head>
<body>
<table>
<tr>
<td>foo
<td>bar
</td></td></tr></table>
</body>
</html>
If I go back to version 1.4.0 then it works like it should...