blob: 7dbc539517ae4b11b7454a56f20af5b5f836bdb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0"?>
<site>
<title>My XMLGRAPH Website</title>
<folder xml:id="n1" name="folder1">
<document xml:id="n11" name="doc1">
<title>doc1 in folder1</title>
<body>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>Welcome to the site. We have lots to say.</p>
<p>Or, <em>maybe</em> not.</p>
</div>
</body>
</document>
<document xml:id="n12" name="doc2">
<title>doc2 in folder1</title>
</document>
</folder>
<folder xml:id="n2" name="folder2">
<document xml:id="n21" name="doc1">
<title>doc1 in folder2</title>
</document>
<document xml:id="n22" name="doc2">
<title>doc2 in folder2</title>
</document>
</folder>
</root>
|