<?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>komix46</authorname>
        <url>http://www.wittycomics.com/users/komix46</url>
        <email></email>
    </author>
    <strip>
        <title>OBAMA 'O8!</title>
        <date>02-12-2007</date>
        <description></description>
        <panels>
            <panel>
                <scene>44</scene>
                <narration></narration>
                <speech>
                    <actor>29</actor>
                    <words>Hello, I'm Barack Obama, and I want to be your next president. I have lot's of good ideas...I'm dressed as a bar back to illustrate the fate of middle class america.</words>
                </speech>
                <thought>
                    <actor>26</actor>
                    <words>This dude f#*king rules...</words>
                </thought>
            </panel>
            <panel>
                <scene>44</scene>
                <narration></narration>
                <speech>
                    <actor>29</actor>
                    <words>I believe in the fundamentals of government by and for the people, equity and balance...blahblah blah.</words>
                </speech>
                <thought>
                    <actor>26</actor>
                    <words>Man! He's so kennedy-esque...except for the black part.</words>
                </thought>
            </panel>
            <panel>
                <scene>44</scene>
                <narration></narration>
                <speech>
                    <actor>29</actor>
                    <words>...tax breaks for the middle class...out of Iraq by march 08, reform...blah blah blah</words>
                </speech>
                <thought>
                    <actor>26</actor>
                    <words>Somebody gonna try to kill this nigga...shame on that. He's just what the doctor ordered.</words>
                </thought>
            </panel>
        </panels>
    </strip>
</comic>

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