<?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>MERRY CHRISTMAS FROM CLEM AND JANE</title>
        <date>12-25-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Look at them injuns jane,all tuckered out from the christmas spirit.</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Well, Clem...I agree, if by "tuckered out" you mean dead...between your whisky and my blanket...</words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>...and my scalpin' kit and your shotgun we gave them injuns a christmas they'll never forget! HOO WHEE!!!</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Goll dangit Clem! Don't forget the influenza we gave 'em!</words>
                </speech>
            </panel>
            <panel>
                <scene>19</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Yessiree! This is one christmas those injuns will never forget</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Who says you can't introduce anglo culture to heathens...let's move on...new years is fast upon us!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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