<?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>shintao</authorname>
        <url>http://www.wittycomics.com/users/shintao</url>
        <email></email>
    </author>
    <strip>
        <title>How McCain got his check up</title>
        <date>06-04-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>29</scene>
                <narration></narration>
                <speech>
                    <actor>48</actor>
                    <words>Yes, I examined Mr. McCain and found him to be in perfect health for a specimen of a 71 year old man, and while I am not a psychiatrist, his mind is that of a two year old boy! Remarkable!</words>
                </speech>
                <speech>
                    <actor>26</actor>
                    <words>She forgot to mention his false teeth, broken arms & legs, and Spaldings falling out of his shorts.</words>
                </speech>
            </panel>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <speech>
                    <actor>49</actor>
                    <words>Great news! Yes, your check cleared Mr. McCain. Wha? Could we say your mind is in perfect condition for another $100,000.00?</words>
                </speech>
                <speech>
                    <actor>48</actor>
                    <words>I think I can swear to that!!! As soon as your next check clears.....</words>
                </speech>
            </panel>
            <panel>
                <scene>44</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>We see Mr. McCain was given a clean bill of physical and mental health. Could you explain why he pisses in his pants and farts constantly?</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Oh, no problem, McCain is in perfect health and we have ordered a new disabled wing be added to the White House where he will work from until he retires.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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