<?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>FORE!!! </title>
        <date>11-24-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>50</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Hey! Jane..How'd you like to make 15 dollars the hard way? HOO-WHEE!!!!</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Well...I don't rightly know...what do I have to do? It don't involve your tallywhacker does it?</words>
                </speech>
            </panel>
            <panel>
                <scene>50</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>HOO-WHEE!!! Aw heck no Jane, i would'nt pay 5 dollars for what you kin do to my tallywhacker...SHEE-IT! See that injun over there with the curvy stick and the "fancy go to washington to prove we's is humans" clothes on?</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Yessir Clem I see him...but he don't look injun to me...What do you want me to do?</words>
                </speech>
            </panel>
            <panel>
                <scene>50</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Mosey on over there all "Mata-Hari" like then like a sidewinder, shoot him in the face and shove that curvy stick where the good lord split ya! HOO-WHEE!</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>That's a plum hard chore, Clem, but OK 15 it is! By the way...Tallywhacker tuggin' just went up to 25 dollars GOLL DANG IT!!! Who the hell is Mata-Hari????</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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