<?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>The Podder</title>
        <date>11-29-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>29</scene>
                <narration></narration>
                <speech>
                    <actor>32</actor>
                    <words>Yeah, some of my friends think I’m nuts, but I actually believe 9/11 was an inside job.</words>
                </speech>
                <speech>
                    <actor>21</actor>
                    <words>Oh my god, I do too!!!</words>
                </speech>
            </panel>
            <panel>
                <scene>29</scene>
                <narration></narration>
                <speech>
                    <actor>32</actor>
                    <words>Really?  Awesome!  Yeah I believe no plane hit the Pentagon or crashed in Shanksville and I believe a drone 767 outfitted with special skin to pierce steel fired a missile out from a pod underneath it into the South Tower.</words>
                </speech>
                <speech>
                    <actor>21</actor>
                    <words>I believe everything you do, expect I don’t believe they actually used planes at all to hit the towers and I think the crash videos were faked.</words>
                </speech>
            </panel>
            <panel>
                <scene>45</scene>
                <narration></narration>
                <speech>
                    <actor>32</actor>
                    <words>WHAT???  YOU DON’T BELIEVE PLANES HIT THE WTC AND ALL THE VIDEOS WERE FAKED? WHAT KIND OF SCREWBALL THEORY IS THAT??? YOU'RE NOTHING BUT A SHILL TRYING TO DESTROY OUR MOVEMENT!!!</words>
                </speech>
                <speech>
                    <actor>21</actor>
                    <words></words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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