<?xml version="1.0"?>

<!DOCTYPE comic [
  <!ELEMENT comic         (comicname, author, strip)>
  <!ELEMENT comicname     (#PCDATA)>
  <!ELEMENT author        (authorname,url,email)>
  <!ELEMENT authorname    (#PCDATA)>
  <!ELEMENT url           (#PCDATA)>
  <!ELEMENT email         (#PCDATA)>
  <!ELEMENT strip         (title, date, description, panels)>
  <!ELEMENT title         (#PCDATA)>
  <!ELEMENT date          (#PCDATA)>
  <!ELEMENT description   (#PCDATA)>
  <!ELEMENT panels        (panel+)>
  <!ELEMENT panel         (scene, narration?, (speech|thought|shout|whisper|heave)*) >
  <!ELEMENT scene         (#PCDATA)>
  <!ELEMENT narration     (#PCDATA)>
  <!ELEMENT speech        (actor, words)>
  <!ELEMENT thought       (actor, words)>
  <!ELEMENT shout         (actor, words)>
  <!ELEMENT whisper       (actor, words)>
  <!ELEMENT heave         (actor, words)>
  <!ELEMENT actor         (#PCDATA)>
  <!ELEMENT words         (#PCDATA)> 
]>

<comic>
    <comicname>Witty Comics</comicname>
    <author>
        <authorname>Killtown</authorname>
        <url>http://www.wittycomics.com/users/Killtown</url>
        <email></email>
    </author>
    <strip>
        <title>Bush at Booker Elementary</title>
        <date>11-02-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>61</scene>
                <narration></narration>
                <speech>
                    <actor>21</actor>
                    <words>Weird how the Secret Service didn't remove the President from the school after the 2nd WTC crash and even more strange that Bush didn't immediately excuse himself to go see what needed to be done after he was told we were under attack! </words>
                </speech>
                <speech>
                    <actor>15</actor>
                    <words>Well what was Bush supposed to do, run out of the room screaming and scare the kids?  You liberals would have been all over him for that.  And where should the Secret Service have taken him?  He was plenty safe at that school with the kids.</words>
                </speech>
            </panel>
            <panel>
                <scene>61</scene>
                <narration></narration>
                <speech>
                    <actor>21</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>15</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>61</scene>
                <narration></narration>
                <speech>
                    <actor>21</actor>
                    <words>Are you for real?</words>
                </speech>
                <speech>
                    <actor>15</actor>
                    <words></words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

<!-- ComicML is based on ComicsML http://www.xml.com/pub/a/2001/04/18/comicsml.html -->

