<?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>INTOTHE WEST 2: THE PENCIL MENACE</title>
        <date>05-23-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>16</scene>
                <narration></narration>
                <speech>
                    <actor>51</actor>
                    <words>Look, Clem...INJUNS</words>
                </speech>
                <speech>
                    <actor>50</actor>
                    <words>Hoo-Whee! I'ma itchin' for some hot drunken injun on injun action...you got the blanket Jane ?</words>
                </speech>
            </panel>
            <panel>
                <scene>16</scene>
                <narration></narration>
                <speech>
                    <actor>51</actor>
                    <words>Right here on my non shootin shoulder Clem...you got the whiskey?</words>
                </speech>
                <speech>
                    <actor>50</actor>
                    <words>I'ma hidin' it behind mah backside jane.I don't want that brave to bumrush us for it. Man...check the water bladders on that squaw! Ready for the pitch?</words>
                </speech>
            </panel>
            <panel>
                <scene>16</scene>
                <narration></narration>
                <speech>
                    <actor>51</actor>
                    <words>HEY! INJUNS!!! You wanna trade a bottle of whiskey and a wool blanket for us watchin' you do it in that alley over there? C'mon Injuns! That's a good deal. </words>
                </speech>
                <speech>
                    <actor>50</actor>
                    <words>Ol' Crazy Horse is a-ponderin'...I can see it in his eyes, Jane, and I can hear it in that injun rutting sound...man,that get's the lead in mah pencil!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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