-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpeople2.xml
More file actions
executable file
·32 lines (30 loc) · 798 Bytes
/
people2.xml
File metadata and controls
executable file
·32 lines (30 loc) · 798 Bytes
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
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<!-- A more complex people XML with DOCTYPE and CDATA tags -->
<!DOCTYPE person [
<!ELEMENT person (name,city,empty,void)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT city (#PCDATA)>
<!ELEMENT void (#PCDATA)>
<!ELEMENT empty (#PCDATA)>
]>
<people>
<person type="natural">
<![CDATA[
Just a CDATA tag that may contain anything, including XML code,
such as <tag>message</tag>.
Its content is extracted but not processed.
]]>
<name>Manoel</name>
<city>Palmas-TO</city>
</person>
<person type="natural">
<name>Breno</name>
<city>Palmas-TO</city>
</person>
<person type="legal">
<name>University of Brasília</name>
<city>Brasília-DF</city>
<empty></empty>
<void/>
</person>
</people>