summaryrefslogtreecommitdiff
path: root/ext/dom/tests/book_with_dtd2.xml
blob: aeb4f0b800d63eb41fdfbacf0692a7e04248ba35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE books [
<!ENTITY entitest "entity is only for test purposes">
<!ATTLIST title default CDATA "default title">
<!ELEMENT books (book*)>
<!ELEMENT book (title, author)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT author (#PCDATA)>
]>
<books>
    <book>
    <title>The Grapes of Wrath</title>
    <author>John Steinbeck</author>
    </book>
    <book>
    <title>The Pearl</title>
    <author>John Steinbeck</author>
    </book>
    <book>
    <title>&entitest;</title>
    <author><![CDATA[data for test]]></author>
    </book>
</books>