<?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>nate_melcher</authorname>
        <url>http://www.wittycomics.com/users/nate_melcher</url>
        <email></email>
    </author>
    <strip>
        <title>Frankenstein (SPOILER ALERT!)</title>
        <date>01-09-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>3</scene>
                <narration></narration>
                <speech>
                    <actor>49</actor>
                    <words>Hello, Society for the Preservation of Movie Sets From the Original Frankenstein Movie, my name is Stephen, how may I help you today?</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>3</scene>
                <narration></narration>
                <speech>
                    <actor>49</actor>
                    <words>...Yes, we have every set from the original Frankenstein movie. ...Just like our name, sir, yes... Which sets? Well, we have the castle, the graveyard, the windmill from the tragic climax where the Monster meets his end...</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>3</scene>
                <narration></narration>
                <speech>
                    <actor>49</actor>
                    <words>...Yes. ...Yes, I... ...I'm sorry, sir... Yes, sir, and I assure you if you had mentioned you hadn't seen the film yet I wouldn't have dropped such a spoiler...</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words></words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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