summaryrefslogtreecommitdiff
path: root/test/relaxng/tutor11_4.rng
blob: 158c7a5a2b948a67b4fd2cf053411652695fda69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<element name="example" xmlns="http://relaxng.org/ns/structure/1.0">
  <zeroOrMore>
    <attribute>
      <anyName>
        <except>
          <name>xml:space</name>
        </except>
      </anyName>
    </attribute>
  </zeroOrMore>
  <optional>
    <attribute name="xml:space">
      <choice>
        <value>default</value>
        <value>preserve</value>
      </choice>
    </attribute>
  </optional>
</element>