<?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>scotfree</authorname>
        <url>http://www.wittycomics.com/users/scotfree</url>
        <email></email>
    </author>
    <strip>
        <title>Blair and Bush on the Moon</title>
        <date>10-21-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>17</scene>
                <narration>Let's</narration>
                <speech>
                    <actor>46</actor>
                    <words>Right, George ... we'll be safe up here.</words>
                </speech>
                <shout>
                    <actor>50</actor>
                    <words>Great idea, Tone ... you are the man!</words>
                </shout>
            </panel>
            <panel>
                <scene>17</scene>
                <narration>get away</narration>
                <speech>
                    <actor>46</actor>
                    <words>Time for a shave, George. Can't let our standards fall, you know.</words>
                </speech>
                <speech>
                    <actor>50</actor>
                    <words>Sure, my friend. But you realise, Tony, that if those Eyeraqis come up here after us I'm gonna have to  use this gun on both of us.</words>
                </speech>
            </panel>
            <panel>
                <scene>17</scene>
                <narration>from it all</narration>
                <speech>
                    <actor>50</actor>
                    <words>So ... do you want be first to take it, or me?</words>
                </speech>
                <shout>
                    <actor>46</actor>
                    <words>Oh please, George ... after you.</words>
                </shout>
            </panel>
        </panels>
    </strip>
</comic>

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