Is there a way to write that there are completely no restrictions on content of an element in Relax NG?
In XML Schema something like this is apparently possible with
<xs:sequence>
<xs:any namespace="##targetNamespace" processContents="lax"
minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
Can I do an equivalent of this in Relax NG?
I propose this solution, dividing attributes and elements declaration, and using
mixedelement to allow mixed content.