<?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>komix46</authorname>
        <url>http://www.wittycomics.com/users/komix46</url>
        <email></email>
    </author>
    <strip>
        <title>ann coulter v.1</title>
        <date>06-07-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>43</scene>
                <narration>FURTHER DOWN THE OXY PATH...</narration>
                <speech>
                    <actor>30</actor>
                    <words>I'm a shill to the GOP</words>
                </speech>
                <shout>
                    <actor>26</actor>
                    <words>Go with it...yessss...</words>
                </shout>
            </panel>
            <panel>
                <scene>43</scene>
                <narration>EVEN FURTHER...</narration>
                <speech>
                    <actor>30</actor>
                    <words>I'm a fraud...a brainless simpleton spewing hate for profit...</words>
                </speech>
                <speech>
                    <actor>26</actor>
                    <words>GO! Ann! take it to the next level...you know...the one above calling 9/11 widows bitches. You can do it you miscreant.</words>
                </speech>
            </panel>
            <panel>
                <scene>43</scene>
                <narration>WE'RE THERE...</narration>
                <speech>
                    <actor>30</actor>
                    <words>I shove the baby jesus buttplug up my ass in solidarity with the GOP...I have Cheney's DNA comingling with my plaque if you know what I mean.</words>
                </speech>
                <speech>
                    <actor>26</actor>
                    <words>Bring it Coulter BRING IT!!!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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