为 XDV 主题设置文档类型
我的主题 HTML 文件中有:
<!DOCTYPE html>
<html lang="en">
但在页面输出中我看到(可能来自 main_template.pt):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1 /DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
如何使用主题文件中的正确文档类型信息?
I have in my theme HTML file:
<!DOCTYPE html>
<html lang="en">
But in the page output I see (probably coming from main_template.pt):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1 /DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
How can I use correct doctype information from my theme file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅http://diazo.org/advanced.html?highlight=doctype#doctypes 了解如何在重氮中执行此操作。我想这在 XDV 中也有效。
** 编辑:更改链接结构..
当前链接是 Diazo typeDoc
See http://diazo.org/advanced.html?highlight=doctype#doctypes for how to do this in Diazo. I assume this also worked in XDV.
** EDIT: the change the links structure..
the current link is Diazo typeDoc
如何使用主题文件中的正确文档类型信息?
我认为您不能。除了 ID 属性和未解析实体的 URI 之外,DTD 中几乎没有任何内容被保留在给定 XML 文档的 XML 信息集中(转换在其上进行)。
如果文档具有 XML Shema 定义,则可以为 XSLT 2.0 处理器提供此模式,并且可以以非常强大的方式使用它。
How can I use correct doctype information from my theme file?
I don't think you can. Almost nothing, except the ID attribute and unparsed entities' URIs, from a DTD is preserved in the XML Infoset (on which a transformation works) of the given XML document.
Were the document to have an XML Shema definition, then an XSLT 2.0 processor can be provided with this schema and can use it in very powerful ways.