<?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>EvilJekyll</authorname>
        <url>http://www.wittycomics.com/users/EvilJekyll</url>
        <email></email>
    </author>
    <strip>
        <title>I don't know.</title>
        <date>05-08-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>4</scene>
                <narration></narration>
                <speech>
                    <actor>21</actor>
                    <words>So you think my love letter will work?</words>
                </speech>
                <thought>
                    <actor>19</actor>
                    <words>Could you say "I'm a sexaholic" any better?</words>
                </thought>
            </panel>
            <panel>
                <scene>6</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>So you think my break-up letter will work?</words>
                </speech>
                <speech>
                    <actor>12</actor>
                    <words>Definitely, once she finds out you have syphillis.</words>
                </speech>
            </panel>
            <panel>
                <scene>12</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>So uh... I have syphillis.</words>
                </speech>
                <speech>
                    <actor>21</actor>
                    <words>Well that's okay, I have AIDS.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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