Is there a way in relax-ng to specify that an attribute's name must match a reg-ex. for example the data-attributes in html5.
<link rel="some-relation" href="/its-location/" data-color="blue" />
I'm hoping I can do something like...
LinkType |= (
attribute rel { text },
attribute data-* { text }*,
( attribute href_template { UriTemplate } | attribute href { Uri } )
)