<?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>HAPPY THANKSGIVING PALEFACES</title>
        <date>11-22-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>HOO-WEE!!! Happy thanksgivi...HEY! Look! INJUNS!</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Why, Happy Thanksgiv...I see em' Clem...Damn!  It's a slew  of em'....DAMMIT!</words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Quick! Run back to the buckboard and grab them small pox infested blankets and my bottle of whiskey!</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Damn straight Clem...we'll give them injuns a turkey day  they won't soon forget, until they die a horrible death writhing in pain from the oozing postules of pox them blankets'll be givin' em...</words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Hey...grab my scalpin' kit while your there...I got the itch. </words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>You got it Clem...killer virus blankets and a rusty straight razor comin' right up.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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