RelaxNG - *任何*属性?
有没有办法定义any名称属性?我正在验证代码,用户可以并且确实将自己的属性应用于标签等,这不会影响我的项目。
<define name="div">
<zeroOrMore>
<attribute name="*">
<text />
</attribute>
</zeroOrMore>
<text />
</define>
Is there a way to define an any name attribute? I'm validating code where users can and do apply their own attributes for tags and the like, which don't impact my project.
<define name="div">
<zeroOrMore>
<attribute name="*">
<text />
</attribute>
</zeroOrMore>
<text />
</define>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎就是你寻找:<anyName/>
seems to be what you are looking for: