I want to read a web page into an XmlDocumemnt so I can use all those cool XML tools to examine it .

But HTML doesn't quite match XML specs. <HTML>, <IMG>, <BR> tags don't require ending tags, for example. And values don't have to be quoted
<Table Width=130>

vs
<Table Width='130'>

Is there a way to get HTMl pages into an XmlDocument without "correcting" all the anamolies?

Thanks!