<?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>grouchobeer</authorname>
        <url>http://www.wittycomics.com/users/grouchobeer</url>
        <email></email>
    </author>
    <strip>
        <title>Willie Nelson's Tax Tips</title>
        <date>02-08-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Willie Nelson with a tip on how you can save over 90% on your income tax. Impossible, you say? Here's how.</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Don't pay your taxes for several years. When they catch you, settle for pennies on the dollar. Not only do you save over 90%, you can actually MAKE money if you invest the money that would otherwise go to taxes.</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Of course, I spent mine on weed...</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words></words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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