<?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>The Manor 4</title>
        <date>01-06-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>26</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>If it's all the same with you, I'd rather not spend the night in a crypt.</words>
                </speech>
                <speech>
                    <actor>35</actor>
                    <words>Oh there was never any question about that. Mummy can't abide the living.</words>
                </speech>
            </panel>
            <panel>
                <scene>26</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>Look, I really need to..</words>
                </speech>
                <speech>
                    <actor>35</actor>
                    <words>Nonsense. I'll have the maid make up a room for you. We'll have a sumptuous meal, a few drinks.. it'll be fun. Then, in the morning, we can have a nice brisk swim in the mote.</words>
                </speech>
            </panel>
            <panel>
                <scene>26</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>It's spelt moat, you know.</words>
                </speech>
                <whisper>
                    <actor>35</actor>
                    <words>Mote.</words>
                </whisper>
            </panel>
        </panels>
    </strip>
</comic>

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