<?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>electricians...</title>
        <date>09-27-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>34</scene>
                <narration>THE FOREMAN DETECTS A PROBLEM</narration>
                <speech>
                    <actor>15</actor>
                    <words>I think you phased that transformer wrong</words>
                </speech>
                <speech>
                    <actor>64</actor>
                    <words>It wasn't me boss... </words>
                </speech>
            </panel>
            <panel>
                <scene>34</scene>
                <narration></narration>
                <speech>
                    <actor>15</actor>
                    <words>Then how do you explain all these sparks and the smell of the electrically rendered flesh of your co-workers?????</words>
                </speech>
                <speech>
                    <actor>64</actor>
                    <words>It's the 4th of July and the local cannibals are having a cookout ???</words>
                </speech>
            </panel>
            <panel>
                <scene>34</scene>
                <narration></narration>
                <speech>
                    <actor>15</actor>
                    <words>It's SEPTEMBER and there are NO cannibals on this jobsite jackass...are you an IJ???</words>
                </speech>
                <speech>
                    <actor>64</actor>
                    <words>NO SIR!! I'm an apprentice!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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