blob: 6d4b1d22322f5d8856253d8cc21b7f613288e780 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<!--
Generic element (from https://relaxng.org/tutorial-20011203.html#IDAFLZR)
-->
<start>
<ref name="element-any" />
</start>
<define name="element-any">
<element>
<anyName/>
<zeroOrMore>
<choice>
<attribute> <anyName/> <text/> </attribute>
<text/>
<ref name="element-any" />
</choice>
</zeroOrMore>
</element>
</define>
</grammar>
|