<?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>Annimation</authorname>
        <url>http://www.wittycomics.com/users/Annimation</url>
        <email></email>
    </author>
    <strip>
        <title>The Western World</title>
        <date>07-06-2007</date>
        <description></description>
        <panels>
            <panel>
                <scene>1</scene>
                <narration>School Bloopers</narration>
                <speech>
                    <actor>53</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>15</actor>
                    <words>One of my students threatened me during class so I kicked him out and notified his parents.  A few hours later I got a call from his dad telling me I'm not helping his kid get an education by kicking him out.</words>
                </speech>
            </panel>
            <panel>
                <scene>1</scene>
                <narration></narration>
                <speech>
                    <actor>53</actor>
                    <words>What is the name of your student?</words>
                </speech>
                <speech>
                    <actor>15</actor>
                    <words>Johnny Smith Junior.</words>
                </speech>
            </panel>
            <panel>
                <scene>1</scene>
                <narration></narration>
                <speech>
                    <actor>53</actor>
                    <words>Johnny Smith Senior threatened me once.  But  his dad took care of that when he got home.  He ended up graduating with honors.</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words>Just let me know when you think I should buy a bullet proof vest.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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