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.
17 lines
466 B
17 lines
466 B
<element name="root" xmlns="http://relaxng.org/ns/structure/1.0">
|
|
<choice>
|
|
<element name="child">
|
|
<attribute name="type">
|
|
<value>Foo</value>
|
|
</attribute>
|
|
<!-- Define stuff that's only valid when type is "Foo" -->
|
|
</element>
|
|
<element name="child">
|
|
<attribute name="type">
|
|
<value>Bar</value>
|
|
</attribute>
|
|
<!-- Define stuff that's only valid when type is "Bar" -->
|
|
</element>
|
|
</choice>
|
|
</element>
|