<?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>Jetgirl12</authorname>
        <url>http://www.wittycomics.com/users/Jetgirl12</url>
        <email></email>
    </author>
    <strip>
        <title>Fred,Clyde, Fred's wife, and a camera guy. Ep 4</title>
        <date>05-10-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>59</scene>
                <narration>The channel 5 newsroom...</narration>
                <speech>
                    <actor>37</actor>
                    <words>Hello all...If you're wondering where Clyde is...He called in sick. It's friday, and I'm guessing he and my wife are getting married for more, here's my wife.</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>10</scene>
                <narration>In england at Clyde's wedding...</narration>
                <speech>
                    <actor>34</actor>
                    <words>That's right Fred, you horrifying crazy  jerk, here's my darling new husband Clyde.</words>
                </speech>
                <whisper>
                    <actor>26</actor>
                    <words>I hate you more than ever.</words>
                </whisper>
            </panel>
            <panel>
                <scene>35</scene>
                <narration></narration>
                <speech>
                    <actor>35</actor>
                    <words>Yes, that's right Fred, me and your wife are happily married. Don't be suprised if we track you down.</words>
                </speech>
                <speech>
                    <actor>34</actor>
                    <words>Like he said you horrible person. You've heard it here on Channel 5 News!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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