<?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>INTO THE WEST</title>
        <date>05-23-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Hoo Whee!! Lookit em go!!!</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Those injuns are goin' at it like two rats in a wool sock!!!</words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>All  this here entertainment for a bottle of whiskey and a wool blanket. Yee Hah! Go Geronimo...Go!!!!</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>This is more fun than robbin' and rapin'  that wagon train family the other day. Choke it down Pochahantas!!! CHOKE IT DOWN!!!</words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Are we gonna kill em when they finish?</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>You know it Clem...let's wait till they get off the blanket though...we can use it in the next county.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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