MagaMuse XML Spec 1.0

REQUIRED - The first line MUST be
<?xml version="1.0"?>

REQUIRED - Article Tag. All sections must fall within an article tag. The title of the article should be placed in the TITLE attribute.

<ARTICLE TITLE="">

</ARTICLE>

REQUIRED - Intro Tag. The intro copy should be placed in the Intro Tag. This copy will be displayed in the article browsing list, but not included in the article itself. Any valid HTML 4.0 tags are permitted within the intro tag.

<INTRO>

</INTRO>

REQUIRED - Section Tag. An unlimited number of section tags can follow the intro tag. They will be presented as separate panels in the order they appear. Any valid HTML 4.0 tags are permitted within the section tag. The title of the section should be placed in the TITLE attribute.

<SECTION TITLE="">

</SECTION>

Example XML file


<?xml version="1.0"?>
<article title="foobar article, of the extreme">

    <intro>
    <p>Intro copy</p>
    </intro>
    <section title="Introduction">
    <p>Foo. Bar. Foooooobar.</p>
    </section>
    <section title="Conclusion">
    <p>Stoooo. Bar. Foooooobar. &lt;foobar&gt;       </p>
    <a href="foobar.php">Foobar</a>
    </section>

</article>