<?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>sigod</authorname>
        <url>http://www.wittycomics.com/users/sigod</url>
        <email></email>
    </author>
    <strip>
        <title>The Peter Gabriel Interview Pt. II</title>
        <date>11-26-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>61</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>Mr. Gabriel, I hear that you have disagreed with Phil Collins about the Genesis reunion gig?</words>
                </speech>
                <speech>
                    <actor>61</actor>
                    <words>Yes, that's correct. He didn't like any of my suggestions.</words>
                </speech>
            </panel>
            <panel>
                <scene>61</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>What kind of suggestions?</words>
                </speech>
                <speech>
                    <actor>61</actor>
                    <words>Well, for the "In the Cage" medley, I suggested it be renamed the "In the Steel-Cage-deathmatch-with-chainsaws" medley</words>
                </speech>
            </panel>
            <panel>
                <scene>61</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>And he, ah, didn't go for that?</words>
                </speech>
                <speech>
                    <actor>61</actor>
                    <words>No. Pussy.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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