<?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>nate_melcher</authorname>
        <url>http://www.wittycomics.com/users/nate_melcher</url>
        <email></email>
    </author>
    <strip>
        <title>Slow</title>
        <date>01-11-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>48</scene>
                <narration></narration>
                <speech>
                    <actor>16</actor>
                    <words>So when Mr. Bosworth would say, "Tommy, meet me in the Board Room," I always ended up here in Bermuda!</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Yeah, Terry isn't always as clear as he could be.</words>
                </speech>
            </panel>
            <panel>
                <scene>48</scene>
                <narration></narration>
                <speech>
                    <actor>16</actor>
                    <words>Thank you! You're the first person to say it might be his fault, instead of me being...</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Slow? You, Tommy?! Just because you flew me down to Bermuda and put me up in a bungalow to show me how you mistook a tropical island for the Board Room doesn't make you SLOW.</words>
                </speech>
            </panel>
            <panel>
                <scene>48</scene>
                <narration></narration>
                <speech>
                    <actor>16</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Thanks for buying my drink. It's delicious.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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