<?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>Osama bin Killed</title>
        <date>11-21-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>20</scene>
                <narration></narration>
                <speech>
                    <actor>71</actor>
                    <words>I am the ghost of Osama bin Laden!</words>
                </speech>
                <speech>
                    <actor>52</actor>
                    <words>You can't be.  He's still alive.  We have recent tapes to prove it.</words>
                </speech>
            </panel>
            <panel>
                <scene>20</scene>
                <narration></narration>
                <speech>
                    <actor>71</actor>
                    <words>Silly American.  You killed me the first day of bombing.  But thanks to advances in puppeteering and the instructional video "Weekend At Bernie's," you will continue to receive tapes of me long after the war ends.</words>
                </speech>
                <speech>
                    <actor>52</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>20</scene>
                <narration></narration>
                <speech>
                    <actor>71</actor>
                    <words>We're also doing a special edition DVD with deleted scenes.</words>
                </speech>
                <speech>
                    <actor>52</actor>
                    <words></words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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