<?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>Duskbringer</authorname>
        <url>http://www.wittycomics.com/users/Duskbringer</url>
        <email></email>
    </author>
    <strip>
        <title>Office Dog #04</title>
        <date>10-17-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>59</scene>
                <narration></narration>
                <speech>
                    <actor>58</actor>
                    <words>Hey Office Dog. What are you doing in here on a Saturday?</words>
                </speech>
                <speech>
                    <actor>63</actor>
                    <words>Oh, hey Sally. The boss asked me to work this weekend. You too huh?</words>
                </speech>
            </panel>
            <panel>
                <scene>59</scene>
                <narration></narration>
                <speech>
                    <actor>58</actor>
                    <words>Yeah, but I don't mind. I don't have much to do on the weekends... Not since my husband left me. </words>
                </speech>
                <speech>
                    <actor>63</actor>
                    <words>Wow. It's like they purposefully hired staff lacking in confidence, but posessing crippling personal problems.. just so they can get more work done on weekends. </words>
                </speech>
            </panel>
            <panel>
                <scene>59</scene>
                <narration></narration>
                <speech>
                    <actor>58</actor>
                    <words>It's called the Blue Ocean Of Tears strategy.</words>
                </speech>
                <speech>
                    <actor>63</actor>
                    <words>Of course.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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