mirror of
https://github.com/GNOME/libxml2.git
synced 2025-10-20 13:43:55 +08:00

* 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>
|
|
|