gpt4 book ai didi

html - 如何使用 XSLT 输出 <!DOCTYPE html>

转载 作者:太空狗 更新时间:2023-10-29 13:19:18 27 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Set HTML5 doctype with XSLT

我是 xslt 的新手,我正在尝试生成 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>

Firefox 给我错误

"XML Parsing Error: not well-formed
Location: file:///E:/XSLT-XML-Shema/shipping-transform.xsl
Line Number 6, Column 4: <!DOCTYPE html>

如果只是<html>它工作正常。我该如何解决这个问题,为什么会这样?

--编辑--

<?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>

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com