0
I use XHTML because my markup is parsed by an XSLT processor (requires well-formed XML).
Why? I can CMS edit individual pages, which then transforms result into static HTML5 pages (Normally, all CMS generated pages go through server-side process and access a database. My framework means my pages are all static, fast loading but can also be updated on-line), Best of all worlds.
Why? I can CMS edit individual pages, which then transforms result into static HTML5 pages (Normally, all CMS generated pages go through server-side process and access a database. My framework means my pages are all static, fast loading but can also be updated on-line), Best of all worlds.
I normally use XHTML...Pretty much because text/html gets parsed as HTML and application/xhtml+xml gets parsed as XML. Therefore, you should use the syntax that matches the MIME type you use.