<?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>crow</authorname>
        <url>http://www.wittycomics.com/users/crow</url>
        <email></email>
    </author>
    <strip>
        <title>welcome back jello lady 2</title>
        <date>04-23-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>66</scene>
                <narration>somewhere in the world their's a person with hours on their hands..with nothing better to do...</narration>
                <speech>
                    <actor>60</actor>
                    <words></words>
                </speech>
                <thought>
                    <actor>28</actor>
                    <words>hmmm how should i poison the masses today...</words>
                </thought>
            </panel>
            <panel>
                <scene>66</scene>
                <narration>in some dark  corner of some unknown basement they plot and sceme...to ramdomly post the same catch phrase...day after day..year after year...</narration>
                <speech>
                    <actor>60</actor>
                    <words></words>
                </speech>
                <thought>
                    <actor>28</actor>
                    <words>first go through all the comics and post sukie me jello...then and other 12 hours of posting meaningless jello jokes...ok think...think...think...</words>
                </thought>
            </panel>
            <panel>
                <scene>66</scene>
                <narration>the monotony is constant their monastic lifestyle is only broken by periodic shrills from the land of the living..."honey,have you been doing stuff to the cat again !"</narration>
                <speech>
                    <actor>60</actor>
                    <words></words>
                </speech>
                <shout>
                    <actor>28</actor>
                    <words>MA !..i'm trying to work down here...huh!</words>
                </shout>
            </panel>
        </panels>
    </strip>
</comic>

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