<?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>NZarathustra</authorname>
        <url>http://www.wittycomics.com/users/NZarathustra</url>
        <email></email>
    </author>
    <strip>
        <title>Poi Polloi</title>
        <date>05-06-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>21</scene>
                <narration></narration>
                <speech>
                    <actor>30</actor>
                    <words>Here I am, all dressed up and ready to help him clean his house, since he seems to have trouble staying on task.</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>21</scene>
                <narration></narration>
                <speech>
                    <actor>30</actor>
                    <words>And in return, he can cook me an actual sit-down dinner that doesn't consist of mashed bean barf or Special K Potato Loaf!</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>You know, you could not talk about me while I'm standing right here...</words>
                </speech>
            </panel>
            <panel>
                <scene>21</scene>
                <narration></narration>
                <speech>
                    <actor>30</actor>
                    <words>I just hope he doesn't continue to make unreasonable demands...</words>
                </speech>
                <thought>
                    <actor>13</actor>
                    <words>Women... I'll never understand them.</words>
                </thought>
            </panel>
        </panels>
    </strip>
</comic>

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