summaryrefslogtreecommitdiff
path: root/test/relaxng/tutor4_4.rng
blob: 4e4f19c40c0a03315bfc201b392bfe7754fcf80f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
  <start>
    <element name="p">
      <ref name="inline"/>
    </element>
  </start>

  <define name="inline">
    <choice>
      <text/>
      <element name="bold">
        <ref name="inline"/>
      </element>
      <element name="italic">
        <ref name="inline"/>
      </element>
      <element name="span">
        <optional>
  	<attribute name="style"/>
        </optional>
        <ref name="inline"/>
      </element>
    </choice>
    <optional>
      <ref name="inline"/>
    </optional>
  </define>
</grammar>