<?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>ntw3001</authorname>
        <url>http://www.wittycomics.com/users/ntw3001</url>
        <email></email>
    </author>
    <strip>
        <title>A Cautionary Tale</title>
        <date>05-07-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>9</scene>
                <narration></narration>
                <speech>
                    <actor>25</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>14</actor>
                    <words>I am sorry I cannot discuss it because the orphan is making a sound</words>
                </speech>
            </panel>
            <panel>
                <scene>6</scene>
                <narration></narration>
                <speech>
                    <actor>14</actor>
                    <words>I will finalise the business deal on the morrow</words>
                </speech>
                <speech>
                    <actor>15</actor>
                    <words>Give me your possessions</words>
                </speech>
            </panel>
            <panel>
                <scene>51</scene>
                <narration></narration>
                <speech>
                    <actor>16</actor>
                    <words>And so he took my file and remote communication device</words>
                </speech>
                <speech>
                    <actor>37</actor>
                    <words>We do not intend to help you at this time</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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