blob: fee93a993780667018bd41284064e225808ea9f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<start>
<ref name="generic-list"/>
</start>
<define name="generic-list">
<element name="list">
<attribute name="name"> <text /> </attribute>
<attribute name="count"> <data type="nonNegativeInteger" /> </attribute>
<choice>
<empty/>
<oneOrMore>
<externalRef href="item-1.1.rng"/>
</oneOrMore>
</choice>
</element>
</define>
</grammar>
|