Tag
Hash :
276be4a6
Author :
Date :
2003-01-24T01:03:34
more work on Relax-NG regenerated the docs updated and augmented the * relaxng.c: more work on Relax-NG * doc/*: regenerated the docs * test/relaxng/* result/relaxng/*: updated and augmented the Relax-NG regression tests and results Daniel
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<start>
<element name="p">
<ref name="inline"/>
</element>
</start>
<define name="inline">
<choice>
<text/>
<element name="bold">
<ref name="inline"/>
</element>
<element name="italic">
<ref name="inline"/>
</element>
<element name="span">
<optional>
<attribute name="style"/>
</optional>
<ref name="inline"/>
</element>
</choice>
<optional>
<ref name="inline"/>
</optional>
</define>
</grammar>