~ubuntu-branches/ubuntu/utopic/libxml2/utopic

« back to all changes in this revision

Viewing changes to test/relaxng/inline2.rng

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-11-10 20:21:18 UTC
  • Revision ID: james.westby@ubuntu.com-20051110202118-j36kpn33k2as4xwa
Tags: upstream-2.6.22
ImportĀ upstreamĀ versionĀ 2.6.22

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
 
2
 
 
3
  <define name="inline">
 
4
    <zeroOrMore>
 
5
      <ref name="inline.class"/>
 
6
    </zeroOrMore>
 
7
  </define>
 
8
 
 
9
  <define name="inline.class">
 
10
    <choice>
 
11
      <text/>
 
12
      <element name="bold">
 
13
        <ref name="inline"/>
 
14
      </element>
 
15
      <element name="italic">
 
16
        <ref name="inline"/>
 
17
      </element>
 
18
    </choice>
 
19
  </define>
 
20
 
 
21
</grammar>