DTD 根元素

发布于 2024-12-11 14:01:44 字数 63 浏览 0 评论 0原文

是否可以在内部定义哪个元素将是 DTD 中的根元素。换句话说,当 DTD 位于单独的文件中时是否可以定义根元素?

Is it possible to define which element will be the root element in a DTD internally. In other words, Is it possible to define the root element when DTD is in a separate file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

死开点丶别碍眼 2024-12-18 14:01:44

根元素由DOCTYPE 声明确定。根元素可以是 DTD 中的任何元素。

例如,在下面的 DTD (test.dtd) 中,book 通常是根元素:

<!ELEMENT book (chapter+)>
<!ELEMENT chapter (section+)>
<!ELEMENT section EMPTY>

但是,如果我们在 doctype 中使用 sectionsection 是根元素:

<!DOCTYPE section SYSTEM "test.dtd">
<section/>

我在外部 DTD 中使用了 DOCTYPE 声明来直接指定根元素,但我认为规范不允许这样做。我所做的是将 DOCTYPE 保留在外部 DTD 中,并从 XML 文件中删除 DOCTYPE。我能够在我使用的程序的命令行上将 DTD 与 XML 文件关联起来。

The root element is determined by the DOCTYPE declaration. The root element can be any element in the DTD.

For example in the DTD below (test.dtd), book would normally be the root element:

<!ELEMENT book (chapter+)>
<!ELEMENT chapter (section+)>
<!ELEMENT section EMPTY>

However, if we use section in the doctype, section is the root element:

<!DOCTYPE section SYSTEM "test.dtd">
<section/>

I've used DOCTYPE declarations in the external DTD to directly specify the root element, but I don't think that is allowed by the spec. What I did was keep the DOCTYPE in the external DTD and remove the DOCTYPE from the XML file. I was able to associate the DTD with the XML file on the command line of the program I was using.

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