summaryrefslogtreecommitdiff
path: root/test/rexml/data/id.xml
blob: 749ab207ce6d73e4df34038ecc1ca1e555bc105e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>

<!DOCTYPE foo [

<!ELEMENT foo (bar)>
<!ATTLIST foo id CDATA #IMPLIED>
<!ELEMENT bar (#PCDATA|cheese)*>
<!ATTLIST bar id ID #REQUIRED>
<!ELEMENT cheese (#PCDATA)>
<!ATTLIST cheese kind ID #IMPLIED>
]>

<foo id="foobar">
  <bar id="fb1">
    baz
    <cheese kind="edam">gouda</cheese>
    baz
    <cheese kind="gouda">cheddar</cheese>
    baz
  </bar>
</foo>