<?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>STUPID GIRL</title>
        <date>06-23-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>51</scene>
                <narration>AT THE OFFICE PARTY...</narration>
                <speech>
                    <actor>56</actor>
                    <words>Hey everybody! come look at my website!</words>
                </speech>
                <speech>
                    <actor>60</actor>
                    <words>I wouldn't do that if I were you...your'e drunk...reel it in.</words>
                </speech>
            </panel>
            <panel>
                <scene>51</scene>
                <narration>SOMETIMES YOU CAN SHOW YOUR ASS</narration>
                <speech>
                    <actor>56</actor>
                    <words>I do a kind of performance art thing</words>
                </speech>
                <speech>
                    <actor>60</actor>
                    <words>C'mon...Blackzilla puts it in your ass and you vomit on his stomach...</words>
                </speech>
            </panel>
            <panel>
                <scene>51</scene>
                <narration>ART IS IN THE EYE OF THE BEHOLDER...</narration>
                <speech>
                    <actor>56</actor>
                    <words>Hey wait! I meant come check out my blog that has post after post of my unending battle with the hand injury spreadsheet...BURP!</words>
                </speech>
                <speech>
                    <actor>60</actor>
                    <words>Too late...your'e the top download for pda's on YOUTUBE...</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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