mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-28 07:21:26 +03:00
* Makefile.am configure.in relaxng.c include/libxml/relaxng.h: First commit of the new Relax-NG validation code, not generally useful yet. * test/relaxng/* result/relaxng/*: current state of the regression tests Daniel
15 lines
417 B
XML
15 lines
417 B
XML
<?xml version="1.0"?>
|
|
<element name="foo"
|
|
xmlns="http://relaxng.org/ns/structure/1.0"
|
|
xmlns:a="http://relaxng.org/ns/annotation/1.0"
|
|
xmlns:ex1="http://www.example.com/n1"
|
|
xmlns:ex2="http://www.example.com/n2">
|
|
<a:documentation>A foo element.</a:documentation>
|
|
<element name="ex1:bar1">
|
|
<empty/>
|
|
</element>
|
|
<element name="ex2:bar2">
|
|
<empty/>
|
|
</element>
|
|
</element>
|