tutor9_5.rng 489 B

12345678910111213141516171819202122232425
  1. <grammar xmlns="http://relaxng.org/ns/structure/1.0">
  2. <start>
  3. <element name="addressBook">
  4. <zeroOrMore>
  5. <element name="card">
  6. <ref name="card.attlist"/>
  7. </element>
  8. </zeroOrMore>
  9. </element>
  10. </start>
  11. <define name="card.attlist" combine="interleave">
  12. <attribute name="name">
  13. <text/>
  14. </attribute>
  15. </define>
  16. <define name="card.attlist" combine="interleave">
  17. <attribute name="email">
  18. <text/>
  19. </attribute>
  20. </define>
  21. </grammar>