<?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>staceyann2203</authorname>
        <url>http://www.wittycomics.com/users/staceyann2203</url>
        <email></email>
    </author>
    <strip>
        <title>lauren</title>
        <date>05-08-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>42</scene>
                <narration>Lauren being interviewed...</narration>
                <speech>
                    <actor>36</actor>
                    <words>Lauren, why are you so harsh and bitchy towards your employees?</words>
                </speech>
                <speech>
                    <actor>21</actor>
                    <words>Well, quite frankly, I'm just a b#tch and I need to pick on small things so that it looks like I actually do something here, other than leave early.</words>
                </speech>
            </panel>
            <panel>
                <scene>59</scene>
                <narration>For example:</narration>
                <speech>
                    <actor>21</actor>
                    <words>Delia, I noticed you left the office early yesterday. We really can't be having this tardiness and coming and going as we please. Don't we all wish we could make our own schedules.</words>
                </speech>
                <speech>
                    <actor>19</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>21</scene>
                <narration>Lauren after leaving work at 2pm as usual on a Thurs and taking an extended weekend.</narration>
                <speech>
                    <actor>21</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words></words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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