The general consensus is never use RegEx for HTML parsing; an XML parser should be used instead.
Is there any commendable papers/theses out there which states/prove this?
After reading this answer to the "RegEx match open tags except XHTML self-contained tags" question and the subsequent 'Parsing Html The Cthulhu Way' blog post by Jeff Atwood, I am a bit annoyed that the head of our Computer Science department taught us 2/3 modules on parsing HTML with RegEx. I'm looking for something I can approach the department with so we can 'save the children'. I don't think they'd change course content based on a blog/SO post. It would be real nice if the documentation proves that an XML parser is the way forward also.
Edit:
This answer to the "RegEx match open tags except XHTML self-contained tags" question about Chomsky Hierarchy is interesting. Is there research out there to prove this is this case and therefore prove the overall point?