<?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>Spring romance amongst the young</title>
        <date>05-08-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>6</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>I have case today,A really sticky one</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Oh yeh?What is the charge?</words>
                </speech>
            </panel>
            <panel>
                <scene>6</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>A woman is charged with gnawing her husband's weiner off.He's asking for her to be boned up the bum with a Kielbasa and a fine of 2.5 Gasquillion¢</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Seems open and shut to me in favor of the husband,Why is it complicated?</words>
                </speech>
            </panel>
            <panel>
                <scene>6</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>Well,Because he's a tranny and I love him.We're getting married.</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Ah,Spring romance amongst the young!Such a tender thing..</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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