<?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>robinson</authorname>
        <url>http://www.wittycomics.com/users/robinson</url>
        <email></email>
    </author>
    <strip>
        <title>The sum of all fears</title>
        <date>05-07-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>21</scene>
                <narration>Just before sunset</narration>
                <speech>
                    <actor>58</actor>
                    <words>Do you really think it is a good idea to link all kinds of different forums together?</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Sure.  It will be fun.</words>
                </speech>
            </panel>
            <panel>
                <scene>21</scene>
                <narration></narration>
                <speech>
                    <actor>58</actor>
                    <words>But won't it cause some serious conflicts?  I mean, these are very different people.</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Oh yeah.  </words>
                </speech>
            </panel>
            <panel>
                <scene>21</scene>
                <narration></narration>
                <speech>
                    <actor>58</actor>
                    <words>I just think it will be like watching a train wreck in slow motion.</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Damn right. With really loud rock music for a soundtrack.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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