<?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>eye_open_doors</authorname>
        <url>http://www.wittycomics.com/users/eye_open_doors</url>
        <email></email>
    </author>
    <strip>
        <title>Shady Characters</title>
        <date>07-20-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>28</scene>
                <narration>Master M. and Agent Yes-Man meet at the secret deluminati headquarters. </narration>
                <speech>
                    <actor>64</actor>
                    <words>Agent Yes-Man the NPO plot to take over the world must be stopped!</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Master M. we only have until November. I will meet with my disinfo specialist immediatly.</words>
                </speech>
            </panel>
            <panel>
                <scene>47</scene>
                <narration>Agent Yes-Man and Father Fakar discuss details about project Beak Clipper. </narration>
                <speech>
                    <actor>13</actor>
                    <words>Father Fakar I need you to use your mesmerism and mind control avenues to spread disinfo and stop the NPO plot to take over the world.</words>
                </speech>
                <speech>
                    <actor>31</actor>
                    <words>I will contact my underlings at ATS to flood the internet will hoaxes and disnfo about the NPO. We will also use the media to stop them in their tracks.</words>
                </speech>
            </panel>
            <panel>
                <scene>16</scene>
                <narration>The Very next day...</narration>
                <speech>
                    <actor>33</actor>
                    <words>I was doing my job and out of no where came this rabid penguin, screaming satanic verses and it tried to suck my blood. It was horrible.</words>
                </speech>
                <speech>
                    <actor>26</actor>
                    <words></words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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