<?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>Church and state V.2</title>
        <date>05-19-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>30</scene>
                <narration></narration>
                <speech>
                    <actor>22</actor>
                    <words>Yes...my son?</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Well, preacher, it just sounds like "the lord" is giving alot of slack to Bush...and I'm not buying in...</words>
                </speech>
            </panel>
            <panel>
                <scene>30</scene>
                <narration></narration>
                <speech>
                    <actor>22</actor>
                    <words>Would you prefer to rejoice in heaven or burn forever in a cauldron filled with the broth of all the sins of all sinners???</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Well, when you put it that way, I'd rather rejoice...is there booze factored in to this rejoicing?</words>
                </speech>
            </panel>
            <panel>
                <scene>30</scene>
                <narration></narration>
                <speech>
                    <actor>22</actor>
                    <words>Yes...now SHUT UP and let me finish the sermon...DAMMIT! I lost my place. Where was I? I'm gonna have to start over....</words>
                </speech>
                <thought>
                    <actor>13</actor>
                    <words>Cool...at least there's booze              in this theocracy...I can drink my way to armegeddon</words>
                </thought>
            </panel>
        </panels>
    </strip>
</comic>

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