1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<?xml version="1.0" encoding="UTF-8"?>
<document>
<section title="About tiny-xml-doc-tools v0.1.4">
<p>The tiny-xml-doc-tools are a set of XSLT and script files used by the fizmo modules to provide documentation in various output formats. It invokes xsltproc to perform the actual conversion.</p>
</section>
<section title="List of document elements">
<p>The following elements can be used in regular XML documentation files:</p>
<ul>
<li><document> – Root element</li>
<li><section> — Section container</li>
<li><ul>, <ol> and <li> — Lists and items</li>
<li><p> — Text paragraph</li>
<li><code> — Code section</li>
<li><a> with @href — Hyperlink</li>
<li><i> — Italics</li>
<li><b> — Bold</li>
<li><tt> — Monospaced</li>
<li><br> — Linebreak</li>
</ul>
</section>
<section title="List of changelog elements">
<p>The following elements can be used for changelogs:</p>
<ul>
<li><changelog> — Root element</li>
<li><change> with @version — Version container</li>
<li><datetime> with @day-of-week, @month, @day, @hour, @minute, @second, @timezone and @year — denotes parent's change date.</li>
<li><logentry> — Describes change, used inside change element.</li>
<li><a> with @href — Hyperlink</li>
</ul>
</section>
</document>
|