<?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>eye_open_doors</authorname>
        <url>http://www.wittycomics.com/users/eye_open_doors</url>
        <email></email>
    </author>
    <strip>
        <title>Shady Characters</title>
        <date>07-29-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>25</scene>
                <narration>Officer Good Guy Badge Gives Mr. Asshat a ticket for thought crimes he hasn't yet thought up</narration>
                <speech>
                    <actor>54</actor>
                    <words>Well Mr. Asshat writing this ticket is going to hurt me more then it hurts you. </words>
                </speech>
                <speech>
                    <actor>14</actor>
                    <words>What's that I am on my cell phone?</words>
                </speech>
            </panel>
            <panel>
                <scene>57</scene>
                <narration>Meanwhile...</narration>
                <speech>
                    <actor>60</actor>
                    <words>Did you see the story about the human that got a ticket for thought crimes he didn't commit?</words>
                </speech>
                <speech>
                    <actor>60</actor>
                    <words>What's this world coming too? I am tired of being used to broadcast lies!</words>
                </speech>
            </panel>
            <panel>
                <scene>51</scene>
                <narration>In a boardroom in every city around the world</narration>
                <speech>
                    <actor>57</actor>
                    <words>Now if you look here you will notice that the size of my penis grows with the ammount of money that is preceieved to be posessed by me.</words>
                </speech>
                <speech>
                    <actor>16</actor>
                    <words>Can I just pinch your ass, instead of kissing it? </words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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