<?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>ashley_hiott</authorname>
        <url>http://www.wittycomics.com/users/ashley_hiott</url>
        <email></email>
    </author>
    <strip>
        <title>Seastar goes for Chinese.....</title>
        <date>05-13-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>29</scene>
                <narration>Broote Breaks the cituation down</narration>
                <shout>
                    <actor>54</actor>
                    <words>Et tu Brute!</words>
                </shout>
                <speech>
                    <actor>55</actor>
                    <words>I'm sorry but you are to lazy for your own good...</words>
                </speech>
            </panel>
            <panel>
                <scene>14</scene>
                <narration>Breaking the cituation down further.</narration>
                <speech>
                    <actor>54</actor>
                    <words>WHY????</words>
                </speech>
                <thought>
                    <actor>55</actor>
                    <words>Well.... me and the other guys though that it was time for you to go get some Chinese food because we are getting hungry...</words>
                </thought>
            </panel>
            <panel>
                <scene>29</scene>
                <narration>Seastar leaves...</narration>
                <speech>
                    <actor>54</actor>
                    <words>Well ...I guess but i still don't understand.....</words>
                </speech>
                <shout>
                    <actor>55</actor>
                    <words>YOU ARE TOO LAZY!!!!what  is so hard to understand about that?</words>
                </shout>
            </panel>
        </panels>
    </strip>
</comic>

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