21 lines
452 B
Plaintext
21 lines
452 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
<!DOCTYPE library [
|
||
|
<!ELEMENT library (storage+)>
|
||
|
<!ELEMENT storage (shelf+)>
|
||
|
<!ATTLIST shelf domain CDATA #REQUIRED>
|
||
|
<!ELEMENT shelf (book*, magazine*)>
|
||
|
<!ELEMENT book (title, author)>
|
||
|
<!ELEMENT magazine (title, author)>
|
||
|
<!ELEMENT title (#PCDATA)>
|
||
|
<!ELEMENT author (#PCDATA)>
|
||
|
]>
|
||
|
<library>
|
||
|
<storage>
|
||
|
<shelf domain="proza">
|
||
|
<book>
|
||
|
<title>Lalka</title>
|
||
|
<author>Prus</author>
|
||
|
</shelf>
|
||
|
</storage>
|
||
|
</library>
|