<?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>Playtah</authorname>
        <url>http://www.wittycomics.com/users/Playtah</url>
        <email></email>
    </author>
    <strip>
        <title>Vacation</title>
        <date>11-22-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>63</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>How was your vacation?</words>
                </speech>
                <speech>
                    <actor>27</actor>
                    <words>We were at the beach. Everybody had matching towels. Somebody went under a dock. And there they saw a rock.</words>
                </speech>
            </panel>
            <panel>
                <scene>63</scene>
                <narration></narration>
                <thought>
                    <actor>13</actor>
                    <words>Boring vacation...and vaguely familiar.</words>
                </thought>
                <speech>
                    <actor>27</actor>
                    <words>But it wasn't a rock.  It was a rock...LOBSTER!</words>
                </speech>
            </panel>
            <panel>
                <scene>63</scene>
                <narration></narration>
                <thought>
                    <actor>13</actor>
                    <words>You tricky son-of-a-gun.</words>
                </thought>
                <speech>
                    <actor>27</actor>
                    <words>I also bought me a Chrysler. It's as big as a whale.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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