Jianw
2025-05-13 3b39fe3810c3ee2ec9ec97236c1769c5c85e062c
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>