<?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>christophespb</authorname>
        <url>http://www.wittycomics.com/users/christophespb</url>
        <email></email>
    </author>
    <strip>
        <title>Le blog du siecle !</title>
        <date>11-10-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>12</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words>Christophespb votre blog a ete elu "Blog du Siecle!" faites nous partager votre succes </words>
                </speech>
                <thought>
                    <actor>13</actor>
                    <words>Si Proceau voit ca, il va me faire avaler sa papakha... </words>
                </thought>
            </panel>
            <panel>
                <scene>12</scene>
                <narration></narration>
                <speech>
                    <actor>12</actor>
                    <words></words>
                </speech>
                <shout>
                    <actor>13</actor>
                    <words>C est avant tout grace a beaucoup de travail, des articles formidablement documentes, des photos splendides et ma modestie qui m ont fait obtenir ce prix</words>
                </shout>
            </panel>
            <panel>
                <scene>33</scene>
                <narration></narration>
                <speech>
                    <actor>56</actor>
                    <words>C est vrai quel beau blog celui de christophespb ! Je vais lui envoyer ma photo pour devenir playmate !</words>
                </speech>
                <whisper>
                    <actor>29</actor>
                    <words>Quel escroc ce type! Mais je peus rien lui dire a cette pauvre petite je perdrai mon meilleur client...</words>
                </whisper>
            </panel>
        </panels>
    </strip>
</comic>

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