You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
451 B
22 lines
451 B
<?xml version="1.0"?>
|
|
<grammar ns="http://www.example.com/choice"
|
|
xmlns="http://relaxng.org/ns/structure/1.0">
|
|
<start>
|
|
<element name="doc" ns="">
|
|
<ref name="elem"/>
|
|
<optional>
|
|
<ref name="elem"/>
|
|
<optional>
|
|
<ref name="elem"/>
|
|
</optional>
|
|
</optional>
|
|
</element>
|
|
</start>
|
|
|
|
<define name="elem">
|
|
<element name="elem" ns="">
|
|
<text/>
|
|
</element>
|
|
</define>
|
|
</grammar>
|