XHTML


From Docunext Technology Wiki

Jump to: navigation, search

XHTML is the future in my opinion, but its been tricky for me to implement. I plan to generate it with XML and XSLT.

XHTML / XSLT Examples

<xsl:stylesheet version="1.0" 
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:html="http://www.w3.org/1999/xhtml"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="xml"
		indent="yes" encoding="UTF-8" omit-xml-declaration="no"
		doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
		doctype-public="-//W3C//DTD XHTML 1.1//EN" />
</xsl:output>
</xsl:stylesheet>
Personal tools