<?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>No injuns...</title>
        <date>05-25-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>18</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Hoo Whee!! We been standin' in this here swamp in the pouring rain for nigh on 4 hours and no injuns</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>My blanket is soaked.</words>
                </speech>
            </panel>
            <panel>
                <scene>18</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>My whiskey is watered down. Even if there were any injuns here they'd never go for it.</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>I know Clem, I have a confession to make...I brought you out here on a false pretense. I wasn't interested in hot drunken injun on injun action...</words>
                </speech>
            </panel>
            <panel>
                <scene>18</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>You brought me out here so we could have sex? Is that what you're sayin' Jane?</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>No...I'm uh...uh...only happy when it rains.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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