<?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>ewing_2001</authorname>
        <url>http://www.wittycomics.com/users/ewing_2001</url>
        <email></email>
    </author>
    <strip>
        <title>Retards vs. 9/11 Truthlings</title>
        <date>10-31-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>35</scene>
                <narration>Retards vs. 9/11 Truthlings</narration>
                <shout>
                    <actor>21</actor>
                    <words>So if "SouthPark" says 9/11 Truther are retards, you believe them..?</words>
                </shout>
                <speech>
                    <actor>13</actor>
                    <words>No, the real retards are the Planehuggers</words>
                </speech>
            </panel>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <shout>
                    <actor>21</actor>
                    <words>Who are the Planehuggers?</words>
                </shout>
                <speech>
                    <actor>13</actor>
                    <words>These are 9/11 Truthlings, who still believe that real planes hit any buildings on 9/11</words>
                </speech>
            </panel>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <shout>
                    <actor>21</actor>
                    <words>That is retarded. I saw it on TV! what about all these witnesses?!!</words>
                </shout>
                <speech>
                    <actor>13</actor>
                    <words>I think SouthPark was right. 911truth.org is run by U.S. Government</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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