<?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>Sukanya</authorname>
        <url>http://www.wittycomics.com/users/Sukanya</url>
        <email></email>
    </author>
    <strip>
        <title>HAI RE KAISI ULJHAN FIR SE ALOO BAINGAN</title>
        <date>06-22-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>62</scene>
                <narration>2 Bachelors living in a foreign country under the same roof sharing the house to save on the rent, Bachelor 1 does the dishes and Bachelor 2 does the cooking.</narration>
                <speech>
                    <actor>61</actor>
                    <words>Whats for lunch?</words>
                </speech>
                <speech>
                    <actor>63</actor>
                    <words>Today Iam making Aloo Baingan (Potatoes and Brinjal mixed vegetable)</words>
                </speech>
            </panel>
            <panel>
                <scene>62</scene>
                <narration>The next day</narration>
                <speech>
                    <actor>61</actor>
                    <words>Whats for lunch?</words>
                </speech>
                <speech>
                    <actor>63</actor>
                    <words>Baingan Aloo (Brinjal and Potato mixed vegetable)</words>
                </speech>
            </panel>
            <panel>
                <scene>62</scene>
                <narration>So the first bachelor who doesnt cook but cleans only the dishes says</narration>
                <speech>
                    <actor>61</actor>
                    <words>Its the same vegetable right</words>
                </speech>
                <speech>
                    <actor>63</actor>
                    <words>You got it right, but sounds boring if i say the same thing all over again doesnt it. This sounds good, yesterday was Aloo Baingan and today it is Baingan Aloo</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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