是否有适用于 HTML5 的 xhtml.xsd 等效项?
我正在开发一个基于 Mozilla XULRunner 的应用程序。
我正在使用 W3C 提供的 xhmtl1-strict.xsd
来获取属性。现在需要将 标记添加到我的应用程序中,但我的应用程序不支持任何 HTML5 元素或属性。
那么,有什么建议吗?
I am developing an appplication based on Mozilla XULRunner.
I am using the xhmtl1-strict.xsd
provided by the W3C to fetch the attribute. Now the requirement came to add the <video>
tag to my application, but my application is not supporting any HTML5 elements or attributes.
So, any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
HTML5 没有文档类型定义或 XML 模式定义。这是因为,尽管 HTML5 与其前身 HTML 4 具有相同的语法,但 HTML5 本身既不基于 SGML,也不基于 XML。它本身就是一种标记语言。
如果您希望使用 Mozilla 技术实现具有 HTML5 功能的浏览器,最新版本的 Gecko 布局引擎支持 HTML5。 此处获取 Gecko/XULRunner SDK。
HTML5 does not have a doctype definition or an XML schema definition. This is because, although it shares the same syntax as its predecessor HTML 4, HTML5 itself is neither based on SGML nor XML. It's a markup language in its own right.
If you are looking to implement a browser with HTML5 capabilities using Mozilla technologies, the latest version of the Gecko layout engine supports HTML5. Get the Gecko/XULRunner SDK here.
http://www.xmlmind.com/xmleditor/download.shtml 中的软件包包含文件 addon/config/xhtml/xsd/5.0/xhtml5.xsd 似乎已获得开源许可。
The packages at http://www.xmlmind.com/xmleditor/download.shtml contain a file addon/config/xhtml/xsd/5.0/xhtml5.xsd which seems to be licensed as open source .
有一个 HTML5 DTD 用于Komodo 的 XML 目录,它是一个 XULRunner 应用程序。它还可以在 Eclipse 中使用,而无需转换为 XSD。此外,还有样式表和正则表达式 可用的 DTD2XSD 转换器。
There is an HTML5 DTD which is used in the XML Catalog of Komodo, which is an XULRunner application. It can also be used in Eclipse without being converted to an XSD. In addition, there are style sheet and regex based DTD2XSD converters available.
要验证 XHTML5,请使用 v.Nu 中的架构。
详情请参见:
https://github.com/unsoup/validator
To validate XHTML5, use the schema from v.Nu.
For details, see:
https://github.com/unsoup/validator