The Drake CMS official documentation files are created according to the XHTML 1.0 Strict standard, it is the only format from which documentation files may be created (independently from the distribution format).
All Drake CMS documentation manuals share images and CSS styles which are stored in the root docs/ directory.
The documentation integration directly into Drake CMS is provided through the docs.php application page.
There are some special HTML comments inside each documentation page; you should not remove them as they are used to build the documentation files adding the top/bottom navigation bars.
<!-- HEADER START --><h1>Title</h1><!-- HEADER END -->
this block defines where the top navigation bar shall be; it must be right after the <body> tag
<!-- TOPBAR START --><table class="navbar">...</table><!-- TOPBAR END -->
this block contains the actual top navigation bar and will be automatically inserted after the FOOTER during the build procedure; it must not be present in source documents (e.g. subversioned files)
<!-- FOOTER START --><p class="footer">...</p><!-- FOOTER END -->
this block defines where the footer navigation bar and copyright information shall be; it must be right before the closing </body> tag
<!-- BOTTOMBAR START --><table class="navbar">...</table><!-- BOTTOMBAR END -->
this block contains the actual bottom navigation bar and will be automatically inserted after the HEADER during the build procedure; it must not be present in source documents (e.g. subversioned files)
Built documents should not be subversioned; documentation will be built by project administrators before release.
The TOPBAR and BOTTOMBAR blocks will be inserted, and also the meta description and keywords tags.