<?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>xene</authorname>
        <url>http://www.wittycomics.com/users/xene</url>
        <email></email>
    </author>
    <strip>
        <title>The Birth of a New Reality Show - Part Two</title>
        <date>10-30-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>26</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Hello, what you are about to witness is the first live exorcism of an American family... </words>
                </speech>
            </panel>
            <panel>
                <scene>63</scene>
                <narration>The exorcism begins...</narration>
                <thought>
                    <actor>31</actor>
                    <words>Oh my...I think I'm going to be sick </words>
                </thought>
                <speech>
                    <actor>28</actor>
                    <words>Cow Brains in a jelled mold...tasty and attractive!</words>
                </speech>
            </panel>
            <panel>
                <scene>65</scene>
                <narration></narration>
                <shout>
                    <actor>31</actor>
                    <words>I CAST YOU OUT....</words>
                </shout>
                <thought>
                    <actor>28</actor>
                    <words>What's the problem, I thought this was a cooking show?</words>
                </thought>
            </panel>
        </panels>
    </strip>
</comic>

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