<?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>Winter in the west</title>
        <date>05-26-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>52</scene>
                <narration></narration>
                <speech>
                    <actor>51</actor>
                    <words>Clem...I been a thinkin' about when we was in that swamp and you thought I wanted you to f*ck me...</words>
                </speech>
                <speech>
                    <actor>50</actor>
                    <words>Hoo-Whee!!! Is it cold here or what? What about the swamp Jane?</words>
                </speech>
            </panel>
            <panel>
                <scene>52</scene>
                <narration></narration>
                <speech>
                    <actor>51</actor>
                    <words>Well Clem, we been tradin' whiskey and this blanket in exchange for watchin drunk injuns have sex and I'm ready for you to take me</words>
                </speech>
                <speech>
                    <actor>50</actor>
                    <words>Hoo-Whee!!! Damn it's cold out here...my whiskey is frozen Jane.</words>
                </speech>
            </panel>
            <panel>
                <scene>52</scene>
                <narration></narration>
                <speech>
                    <actor>51</actor>
                    <words>What are you tryin' to say Clem? I know it's cold, but my love gully's hot and drippin'...</words>
                </speech>
                <speech>
                    <actor>50</actor>
                    <words>Hoo-Whee!!! Let me put it this way Jane...I don't rightly know where my soldier went but he left his helmet.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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