I believe we all agree why HTML5 wasn't chosen as the default standard for web pages in Visual Studio 2010. With the release of the 2010 version, HTML5 wasn't even supported, and only some features were implemented in SP1.
So the question is why chose XHTML over HTML 4.01 (and then why chose different versions of XHTML over others).
First of all, this is an excerpt from a MSDN article regarding XHTML support ( http://msdn.microsoft.com/en-us/library/exc57y7e(v=vs.100).aspx ):
Creating Web pages that are conformant with XHTML standards has several advantages:
It guarantees that the elements in the pages are well formed.
Because many browsers are increasingly moving toward supporting XHTML, creating pages that conform to XHTML standards helps ensure that your pages render consistently in all browsers.
Using XHTML helps to make pages conform more readily to accessibility standards.
XHTML is extensible, allowing the definition of new elements.
An XHTML page is much easier to read programmatically for situations in which the Web page is processed by a computer instead of being read by users, and the document can be manipulated using transformations.
Now, how do you choose between different versions of XHTML (1.0 Transitional, 1.0 Strict and 1.1)?
The main difference between XHTML 1.0 Transitional and Strict is the shift towards more semantic markup (inclusion only of structural elements, and not styling elements, like <font> or <pre>). Transitional still supports these elements and attributes (like <img> width and height) because it is designed for backwards-compatibility (hence the name Transitional) while Strict doesn't, and encourages the use of CSS instead of markup.
So, the idea here is that you use Strict when you have understood that you need to separate style (CSS) from markup (HTML).
But why not chose XHTML 1.1 (also supported by VS 2010) instead of XHTML 1.0 Strict? Aside from some minor tweaks (removal of the "name" attribute for <a> and <map>, the removal of the "lang" attribute in favor of "xml:lang" and the addition of the ruby element) there are no major differences when it comes to specific markup. The major downside of XHTML 1.1 is that it requires you to transmit your content as "application/xhtml+xml" instead of "text/html", and the browser support for this was limited with earlier versions.
So, why did Microsoft decide to use XHTML 1.0 Transitional as their default DOCTYPE?
- instead of HTML because all of the advantages mentioned above from the MSDN article
- instead of XHTML 1.0 Strict and 1.1 because you always want backwards compatibility in your IDE, and if they used Strict for example, if you had opened your XHTML 1.0 Transitional with <font> and <pre> in it you would have gotten a lot of errors, which could be avoided.
- internally, and this is only a guess, XHTML is slightly faster to parse (because XML parsing is generally a little bit faster than HTML). Although for an user the difference is not notable, for a large program like Visual Studio every little tweak counts.
I mentioned only Visual Studio, but same applies to Expression.