blob: 468bfcd25d6493e715303aca830ac44d86709037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<!-- Base Module -->
<define name="base">
<element name="base">
<ref name="base.attlist"/>
</element>
</define>
<define name="base.attlist">
<attribute name="href">
<ref name="URI.datatype"/>
</attribute>
</define>
<define name="head.content" combine="interleave">
<optional>
<ref name="base"/>
</optional>
</define>
</grammar>
|