<?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>T_Emery_Lolsworth</authorname>
        <url>http://www.wittycomics.com/users/T_Emery_Lolsworth</url>
        <email></email>
    </author>
    <strip>
        <title>The Wall of Death</title>
        <date>03-18-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>15</actor>
                    <words>BONUS COMIC BONUS COMIC</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>A f#*kload of people seem to have died and we just can't let it go unremarked because DAMN</words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>15</actor>
                    <words>First, Anthony Minghella, which is f#*king BULLsh#t. He was 54, you f#*king dicks</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Also Arthur C. Clarke, who at least got to see what happened in 2001. Needn't have bothered really, it wasn't good</words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>15</actor>
                    <words>And Captain Birdseye, 86, friend to children everywhere provided they have no families and enjoyed eating breaded seafood above all reason</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Still and all, Minghella? Come on, guys, stop f#*king around</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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