<?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>Dick_Gozinia</authorname>
        <url>http://www.wittycomics.com/users/Dick_Gozinia</url>
        <email></email>
    </author>
    <strip>
        <title>What a pro!</title>
        <date>05-07-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>64</scene>
                <narration></narration>
                <speech>
                    <actor>49</actor>
                    <words>Yes,I'm about to go on airHoney,not now,could you call back after I've done the NEWS AT FIVE O'CLOCK with ME...</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words>BROCK STONE?STANDBY ON SET!!</words>
                </speech>
            </panel>
            <panel>
                <scene>64</scene>
                <narration></narration>
                <speech>
                    <actor>49</actor>
                    <words>Yes,Hold on,It's my Wife,Honey!gotta run!NO! I didn't sleep with her,she's a lesbian..</words>
                </speech>
                <speech>
                    <actor>0</actor>
                    <words>And in 5,4,3,2,1,ON AIr!</words>
                </speech>
            </panel>
            <panel>
                <scene>64</scene>
                <narration></narration>
                <speech>
                    <actor>37</actor>
                    <words>Hello,This is the news,liçk m¥ håir¥ &#8706;ånk nu††såçk,I'm BROCK STONE ¥øu †wå†s¡</words>
                </speech>
                <thought>
                    <actor>0</actor>
                    <words>What a pro!</words>
                </thought>
            </panel>
        </panels>
    </strip>
</comic>

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