You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
347 B
Plaintext

<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<start>
<ref name="top"/>
</start>
<define name="empty">
<empty/>
</define>
<define name="top">
<element name="top">
<choice>
<ref name="empty"/>
<element name="a">
<text/>
</element>
</choice>
</element>
</define>
</grammar>