<?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 3</title>
        <date>01-05-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>26</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>Tom, I think I should leave.</words>
                </speech>
                <speech>
                    <actor>35</actor>
                    <words>Oh, but I've told the chef to cook a fine meal. Then I was going to open a vintage bottle of wine from the cell... wine.. room.</words>
                </speech>
            </panel>
            <panel>
                <scene>26</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>I don't know.. my nerves are pretty frayed.</words>
                </speech>
                <speech>
                    <actor>35</actor>
                    <words>Come on Paul. Have a few more drinks. Why don't you stay the night?</words>
                </speech>
            </panel>
            <panel>
                <scene>26</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>In the guest house over there?</words>
                </speech>
                <speech>
                    <actor>35</actor>
                    <words>Guest house? No, no.. That's my mother's mausoleum.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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