<?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>The wild west wing</title>
        <date>05-19-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>43</scene>
                <narration>Officer Balzac questions the white house maid...</narration>
                <speech>
                    <actor>54</actor>
                    <words>So...Let me get this straight. You went into the oval office to dust and then what happened?</words>
                </speech>
                <speech>
                    <actor>30</actor>
                    <words>Like I said officer...Bush was on all fours with one of those dog cones around his neck, and Cheney was wearing a gestapo uniform and a strap on.</words>
                </speech>
            </panel>
            <panel>
                <scene>43</scene>
                <narration></narration>
                <speech>
                    <actor>54</actor>
                    <words>Go on...</words>
                </speech>
                <speech>
                    <actor>30</actor>
                    <words>There was this Roy Orbison song blaring and Laura was doing a shimmy dance on the couch in a halter top and a leather miniskirt. She was drooling, I mean, I think it was drool.</words>
                </speech>
            </panel>
            <panel>
                <scene>43</scene>
                <narration></narration>
                <speech>
                    <actor>54</actor>
                    <words>I'm unclear on exactly how the president got his eye poked out...</words>
                </speech>
                <speech>
                    <actor>30</actor>
                    <words>Well...Cheney was shimmy dancing toward Bush's face when Laura suddenly jumped off the couch onto Cheney's back and...I'm sorry, I just can't go there...it makes my eyes bleed.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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