Does anybody know of an html cleaner for .NET that can parse html and (for instance) convert it to a more machine friendly format such as xhtml?
I've tried the HTML Agility Pack, but that fails to correctly parse even fairly simple examples.
To give an example of html that should be parsed correctly:
<html><body>
<ul><li>TestElem1
<li>TestElem2
<li>TestElem3 List:
<ul><li>Nested1
<li>Nested2</li>
<li>Nested3
</ul>
<li>TestElem4
</ul>
<p>paragraph 1
<p>paragraph 2
<p>paragraph 3
</body></html>
li
tags don't need to be closed (see spec), and neither do P
tags. In other words, the above sample should be parsed as:
<html><body>
<ul><li>TestElem1</li>
<li>TestElem2</li>
<li>TestElem3 List:
<ul><li>Nested1</li>
<li>Nested2</li>
<li>Nested3</li>
</ul></li>
<li>TestElem4</li>
</ul>
<p>paragraph 1</p>
<p>paragraph 2</p>
<p>paragraph 3</p>
</body></html>
Since the aim is to use the library on various machines, it's a big disadvantage to need to fall back to native code (such as a wrapper around html tidy) which would require extra deployment hassle and sacrifice platform independance, not to mention being impossible in sandboxed scenarios.
Any suggestions? To recap, I'm looking for:
- An html cleaner ala HTML tidy
- Must be able to deal with real world html, not just xhtml, at the very least correctly reading valid html 4
- Must be able to convert to a more easily processable xml format
- Should be a purely managed app.