为 XDV 主题设置文档类型

发布于 2024-11-02 17:42:40 字数 402 浏览 1 评论 0原文

我的主题 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

似最初 2024-11-09 17:42:41

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

白况 2024-11-09 17:42:41

如何使用主题文件中的正确文档类型信息?

我认为您不能。除了 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文