<?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>crow</authorname>
        <url>http://www.wittycomics.com/users/crow</url>
        <email></email>
    </author>
    <strip>
        <title>open all hours...</title>
        <date>04-16-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <speech>
                    <actor>14</actor>
                    <words>they fired you...well we'll just see about this...</words>
                </speech>
                <speech>
                    <actor>66</actor>
                    <words>*sob* sniffle...</words>
                </speech>
            </panel>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <speech>
                    <actor>14</actor>
                    <words>yeah...let me talk to jammerson...yeah...this is sam...jammie's husband...oh i see..uh huh...right..ok...bye...</words>
                </speech>
                <speech>
                    <actor>66</actor>
                    <words>sniffle *sob*...</words>
                </speech>
            </panel>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <speech>
                    <actor>14</actor>
                    <words>some how you forgot to mention you and some other guy were doing the horizontal disco on the copying machine...</words>
                </speech>
                <speech>
                    <actor>66</actor>
                    <words>welll....it's not as if it was'nt  the first time...</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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