diff options
Diffstat (limited to 'libxml2/test/relaxng/tutor3_1.rng')
-rw-r--r-- | libxml2/test/relaxng/tutor3_1.rng | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libxml2/test/relaxng/tutor3_1.rng b/libxml2/test/relaxng/tutor3_1.rng new file mode 100644 index 0000000..78d6736 --- /dev/null +++ b/libxml2/test/relaxng/tutor3_1.rng @@ -0,0 +1,12 @@ +<element name="addressBook" xmlns="http://relaxng.org/ns/structure/1.0"> + <zeroOrMore> + <element name="card"> + <attribute name="name"> + <text/> + </attribute> + <attribute name="email"> + <text/> + </attribute> + </element> + </zeroOrMore> +</element> |