<?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>butchbrooklyn</authorname>
        <url>http://www.wittycomics.com/users/butchbrooklyn</url>
        <email></email>
    </author>
    <strip>
        <title>The Feeble Office Warrior #2</title>
        <date>07-08-2007</date>
        <description></description>
        <panels>
            <panel>
                <scene>59</scene>
                <narration>Into David 1.0 ... Butch's Evil Villain</narration>
                <speech>
                    <actor>37</actor>
                    <words>Hey Butch... Whats the word office Nerd.....Just Kidding ole buddy you know .....LOL</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Hi David .....Mr. Adamantine wants to see me in the Conferance room</words>
                </speech>
            </panel>
            <panel>
                <scene>60</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>Mr. Adamantine you wanted to see me Sir?</words>
                </speech>
                <speech>
                    <actor>12</actor>
                    <words>I'm bringing in efficiency expert from the outside and I'm going to need you to pick her up at the Airport...it seems some of our workers have been wasting company time online......One more thing Butch Keep this under your hat .</words>
                </speech>
            </panel>
            <panel>
                <scene>59</scene>
                <narration>And the fishy ..takes the Bait</narration>
                <speech>
                    <actor>37</actor>
                    <words>So How did it go? with the Big Cheif-a-roony...</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>oh I..I..don't know...he said something about "Desk Top Tower Defense"....I don't know what that is..I'm going to have to look it up on a Internet Search engine or something..I don't know</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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