Phil wrote:
Just tried it out myself. The only bad thing I saw (and I'm sure it's accurate of being XHTML "strict") is that it stripped all comments out of the page, thus stripping out Coffee Cups comments that this page was created with CC Software.
I just tried it myself and there were three problems.
1. It adds the xml declaration above the doctype which throws IE browsers into quirks mode. Very bad. Make sure you never have that or anything else, including blank lines, above your doctype.
2. The opening html tag was missing the necessary xmlns attribute:
<html xmlns="http://www.w3.org/1999/xhtml">
3. This one is really bad. The meta tag for character encoding wasn't closed correctly using " />"
Instead, it was left the same and followed by the title tag, the body tag, the body content, the closing body tag, and then the closing meta tag, and then the closing head tag???