<?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>Breona2468</authorname>
        <url>http://www.wittycomics.com/users/Breona2468</url>
        <email></email>
    </author>
    <strip>
        <title>Earfully Earful</title>
        <date>05-13-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>57</scene>
                <narration></narration>
                <speech>
                    <actor>53</actor>
                    <words>Friend, Roman, countrymen, lend me your ears. </words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Well, excuse me sir but my ears are well attached unlike your unstable ears.</words>
                </speech>
            </panel>
            <panel>
                <scene>57</scene>
                <narration></narration>
                <speech>
                    <actor>53</actor>
                    <words>Wwell.... it wouldn't be so well attached when i decide to rip it off! </words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Haha what a joke</words>
                </speech>
            </panel>
            <panel>
                <scene>57</scene>
                <narration></narration>
                <speech>
                    <actor>53</actor>
                    <words>Excuse me sir, but your ears just fell on the floor. Hahahah</words>
                </speech>
                <thought>
                    <actor>13</actor>
                    <words>Wow</words>
                </thought>
            </panel>
        </panels>
    </strip>
</comic>

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