Dominik_Jagosz_prace_domowe/zajęcia 5/bibliotekaxml.txt

21 lines
452 B
Plaintext
Raw Permalink Normal View History

2021-01-26 13:20:58 +01:00
<?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>