mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-25 06:03:34 +03:00
a59853a3cc
* doc/*: integrating the examples in the navigation menus * doc/examples/*: added make tests, updated the navigation, added a new test, cleanups, updates. Daniel
14 lines
227 B
XML
14 lines
227 B
XML
<!DOCTYPE doc [
|
|
<!ELEMENT doc (src | dest)*>
|
|
<!ELEMENT src EMPTY>
|
|
<!ELEMENT dest EMPTY>
|
|
<!ATTLIST src ref IDREF #IMPLIED>
|
|
<!ATTLIST dest id ID #IMPLIED>
|
|
]>
|
|
<doc>
|
|
<src ref="foo"/>
|
|
<dest id="foo"/>
|
|
<src ref="foo"/>
|
|
</doc>
|
|
|