blob: 22f1856ef9b18c2fe263d0b5664e6d6a7f46640b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<!-- An instruction to the user -->
<start>
<ref name="element-instruction" />
</start>
<define name="element-instruction">
<element name="instruction">
<text/>
</element>
</define>
</grammar>
|