<?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>truehines</authorname>
        <url>http://www.wittycomics.com/users/truehines</url>
        <email></email>
    </author>
    <strip>
        <title>Photo Phobia</title>
        <date>05-13-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>25</scene>
                <narration>March 13</narration>
                <speech>
                    <actor>16</actor>
                    <words>Hello, Welcome to the Americans for photophobia meeting. My name is Joe, nice to meet you.</words>
                </speech>
                <shout>
                    <actor>71</actor>
                    <words>Beware the ides of march</words>
                </shout>
            </panel>
            <panel>
                <scene>51</scene>
                <narration>inside the meeting</narration>
                <speech>
                    <actor>16</actor>
                    <words>I dont know what to do Jack. That ghost really scared me. I thought it was just a costume at first.</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>I wouldnt worry about it. Even if it was a real ghost, it cant know the future.</words>
                </speech>
            </panel>
            <panel>
                <scene>49</scene>
                <narration>3 days later...A tornado appears in San Fransisco</narration>
                <speech>
                    <actor>26</actor>
                    <words>Hold still mister, your gonna be on the nightly news.</words>
                </speech>
                <shout>
                    <actor>16</actor>
                    <words>Nooooooooo not my picture!!</words>
                </shout>
            </panel>
        </panels>
    </strip>
</comic>

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