<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="./biblThings.css"?>
<!DOCTYPE listBibl [
<!ELEMENT listBibl ( biblThing+ )>
<!ELEMENT biblThing ( title, author, date ) >
<!ATTLIST date value CDATA #REQUIRED>
<!ELEMENT date EMPTY>
<!ELEMENT title (#PCDATA)>
<!ELEMENT author (#PCDATA)>
]>
<listBibl>
  <biblThing>
    <title>Test One</title>
    <author>Francis Burney</author>
    <date value="2005-02-27"/>
  </biblThing>
  <biblThing>
    <title>Test Two</title>
    <author>Frank Burney</author>
    <date value="2005-03-01"/>
  </biblThing>
</listBibl>
