有没有办法在relax-ng 中指定属性的名称必须与正则表达式匹配。例如 html5 中的数据属性。
<link rel="some-relation" href="/its-location/" data-color="blue" />
我希望我能做类似的事情......
LinkType |= (
attribute rel { text },
attribute data-* { text }*,
( attribute href_template { UriTemplate } | attribute href { Uri } )
)