<?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>poohbaby0921</authorname>
        <url>http://www.wittycomics.com/users/poohbaby0921</url>
        <email></email>
    </author>
    <strip>
        <title>Morden Macbeth</title>
        <date>05-07-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>47</scene>
                <narration>Lady Macbeth In our times getting the guard drunk</narration>
                <speech>
                    <actor>20</actor>
                    <words>Here have a drink, after all you never know this may be your last one</words>
                </speech>
                <speech>
                    <actor>59</actor>
                    <words>Thank you I was going to get one when I went on break, but I forgot</words>
                </speech>
            </panel>
            <panel>
                <scene>47</scene>
                <narration>Lady Macbeth telling him to do his part of the plan</narration>
                <speech>
                    <actor>47</actor>
                    <words>I've done my part its time for you to go through with yours</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Before I kill him let me get his permission</words>
                </speech>
            </panel>
            <panel>
                <scene>47</scene>
                <narration>Macbeth getting ready to kill Duncan</narration>
                <speech>
                    <actor>12</actor>
                    <words>What is it Vice President Macbeth</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>President Duncan do you mind if I kill you, I promise it won't hurt</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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