<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE bookDB [
<!ELEMENT bookDB (book)>
<!ELEMENT book (title,author)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT author (#PCDATA)>
<!ENTITY t "MyBook">
<!ENTITY a "ABC">
<!ATTLIST book year CDATA #REQUIRED>
]>
<bookDB>
<book year="2017">
<title>&t;</title>
<author>&a;</author>
</book>
</bookDB>
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.