Possible Duplicate:
Set HTML5 doctype with XSLTCómo salida <! DOCTYPE html> XSLT con
Soy nuevo en XSLT y estoy tratando de producir un documento HTML 5.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<!DOCTYPE html>
y Firefox me da el error
"XML Parsing Error: not well-formed
Location: file:///E:/XSLT-XML-Shema/shipping-transform.xsl
Line Number 6, Column 4: <!DOCTYPE html>
Si es sólo <html>
funciona bien. ¿Cómo soluciono esto y por qué ocurre?
--EDIT--
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" doctype-system="about:legacy-compact" />
<xsl:template match="/">
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Sample Corporation #1</title>
</head>
<body>
Hello this is a test<br />
Goodbye!
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Es un posible duplicado, pero ese hilo es difícil de leer. Porque "Soy nuevo en XSLT" aún más difícil. –