Article

An <article> node is always the root node of a document. When rendered to the output format, each article will represent a single output document. Articles are the base of all documentation in Yagsbook. Every entry in an Encyclopedia is an <article> , and each standalone document of rules is an <article> .

An <article> will often reference other documents which will be included when the document is rendered to the final format.

Example

<article>

<header>

<title> Example Document </title>

<tagline> Yagsbook </tagline>

<slugline> simple sample document </slugline>

<author>

<fullname> Samuel Penn </fullname>

<email> sam@bifrost.demon.co.uk </email>

</author>

<cvsinfo/>
<license/>

</header>

<front/>
<back/>

<body>

<sect1>

<title> Main Section </title>

<p>

A simple paragraph of text.

</p>

</sect1>

</body>

</article>

Definition

article:: (header, front?, back?, body)

At a minimum, an <article> must contain one <header> which contains the meta data for the article, and a <body> element which contains the story text of the article.

The <front> and < back> matter of the article (as defined by the GNU FDL) is optional.

Sourceforge.net Valid XHTML Valid CSS