<?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>Random Lunch?</title>
        <date>04-10-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>42</scene>
                <narration></narration>
                <speech>
                    <actor>35</actor>
                    <words>Screw it! I'm not going to Daphne's with you guys!</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Boo Hoo Denny. I do not fall for your phishin' setups!</words>
                </speech>
            </panel>
            <panel>
                <scene>42</scene>
                <narration></narration>
                <speech>
                    <actor>35</actor>
                    <words>Well I'll be at Wahoo's then!</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Nah, you must obey the Randomizer. Then again...Wahoo's does serve beer =D</words>
                </speech>
            </panel>
            <panel>
                <scene>42</scene>
                <narration></narration>
                <thought>
                    <actor>35</actor>
                    <words>tee hee, I don't think he noticed yet</words>
                </thought>
                <speech>
                    <actor>13</actor>
                    <words>....And I may be buzzed but stop inching your dirty hand towards my crotch!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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