<?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>Steve?  Steve?  Are you there?</title>
        <date>04-11-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>33</scene>
                <narration>Shocked</narration>
                <speech>
                    <actor>36</actor>
                    <words>So, how did you feel when you discovered the awful news?</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Well, I have to tell you, it wasn't good.</words>
                </speech>
            </panel>
            <panel>
                <scene>33</scene>
                <narration></narration>
                <speech>
                    <actor>36</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>I thought it was an upscale sight, Urbane, witty, fresh, cutting edge.</words>
                </speech>
            </panel>
            <panel>
                <scene>33</scene>
                <narration></narration>
                <speech>
                    <actor>36</actor>
                    <words>And when you realized the Elves were running Santas workshop?</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Just sick, sick at heart.  It all seemed so innocent, then I found out about the Jello.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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