<?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>Introducing Phil Collins</title>
        <date>11-24-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>66</scene>
                <narration>Meanwhile, backstage at Madison Square Gardens, the concert is about to begin</narration>
                <speech>
                    <actor>65</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words>Ladies and gentlemen, will you welcome to the stage...</words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>65</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words>...he's crap in bed, he farts like a trooper and he has a really small willy...</words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <thought>
                    <actor>65</actor>
                    <words>Wait a minute, that's my ex-wife's voice!</words>
                </thought>
                <speech>
                    <actor>0</actor>
                    <words>...I've also seen him piss himself when drunk...</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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