Skip to content

Instantly share code, notes, and snippets.

@extstopcodepls
Created March 17, 2014 16:30
Show Gist options
  • Save extstopcodepls/9602791 to your computer and use it in GitHub Desktop.
Save extstopcodepls/9602791 to your computer and use it in GitHub Desktop.
relaxNG valid
<?xml version="1.0"?>
<element name="studenci" xmlns="http://relaxng.org/ns/structure/1.0">
<zeroOrMore>
<element name="student">
<attribute name="prywatny">
<choice>
<value>
tak
</value>
<value>
nie
</value>
</choice>
</attribute>
<element name="imie"><text /></element>
<element name="nazwisko"><text /></element>
</element>
</zeroOrMore>
</element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment