1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <element name="example" xmlns="http://relaxng.org/ns/structure/1.0">
| <zeroOrMore>
| <attribute>
| <anyName/>
| </attribute>
| </zeroOrMore>
| <optional>
| <attribute name="xml:space">
| <choice>
| <value>default</value>
| <value>preserve</value>
| </choice>
| </attribute>
| </optional>
| </element>
|
|