<?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>mtn1337</authorname>
        <url>http://www.wittycomics.com/users/mtn1337</url>
        <email></email>
    </author>
    <strip>
        <title>Chicks of Elbonia</title>
        <date>05-12-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>Hey Jin, take a look at this. Aioli just texted me saying she has a sister. Or does that word mean daughter? Gah Babelfish can't translate fast enough!!</words>
                </speech>
                <speech>
                    <actor>16</actor>
                    <words>Does it really matter? She's Elbonian, so she must be your type, Lenny. I say go for it!!</words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>...I guess you're right. I do want lots of kids but I was hoping they were my own instead of ones my mom would bring me back from Mexico.</words>
                </speech>
                <speech>
                    <actor>16</actor>
                    <words>You can always fall back on her hotness even though you don't understand a word she says.</words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>Hey she just sent me a text pix.....ohhhh not hot. Abort! Abort! Abort!</words>
                </speech>
                <speech>
                    <actor>16</actor>
                    <words>Whoa, are all Elbonian women bearded?!?!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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