diff options
author | David Robillard <d@drobilla.net> | 2010-11-26 20:25:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-11-26 20:25:02 +0000 |
commit | e0c4fb1bc1c66e5655a41ddcbfaafb07e32b93a2 (patch) | |
tree | a73d27c9839bd99ef8e14ac3efec8d59d21c756d /lv2specgen/template.html | |
parent | a31c23155b8b1902f70a63a12d7c09822dacda04 (diff) | |
download | lv2-e0c4fb1bc1c66e5655a41ddcbfaafb07e32b93a2.tar.xz |
Mark up documentation with lv2:documentation as per discussion on lv2-dev.
Use unified lv2plug.in style for ontology documentation.
Diffstat (limited to 'lv2specgen/template.html')
-rw-r--r-- | lv2specgen/template.html | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/lv2specgen/template.html b/lv2specgen/template.html index 3f4cff4..d4d76e0 100644 --- a/lv2specgen/template.html +++ b/lv2specgen/template.html @@ -12,32 +12,31 @@ <title>@NAME@</title> <meta http-equiv="content-type" content="text/xhtml+xml; charset=utf-8" /> <meta name="generator" content="lv2specgen" /> - <style type="text/css"> -@STYLE@ - </style> + <link href="@STYLE_URI@" rel="stylesheet" type="text/css" /> </head> <body> - <h1 id="title">@NAME@</h1> - <div class="meta"> - <table> - <tr><th class="metahead">URI</th><td><a href="@URI@">@URI@</a></td></tr> - <tr><th class="metahead">Revision</th><td>@REVISION@</td></tr> - <tr><th class="metahead">Namespaces</th><td>@PREFIXES@</td></tr> - @AUTHORS@ - </table> + <div id="titleheader"> + <h1 id="title">@NAME@</h1> + <div class="meta"> + <table> + <tr><th class="metahead">URI</th><td><a href="@URI@">@URI@</a></td></tr> + <tr><th class="metahead">Revision</th><td>@REVISION@</td></tr> + <tr><th class="metahead">Namespaces</th><td>@PREFIXES@</td></tr> + @AUTHORS@ + </table> + </div> </div> - <!-- META --> <div class="content"> - <p>This document describes <a href="@URI@">@NAME@</a>, - an <a href="http://lv2plug.in/">LV2</a> related specification. - Comments are welcome, please direct discussion to <a + <p>This document is generated from <a href="@FILENAME@">@FILENAME@</a>, which + describes <a href="@URI@">@NAME@</a> (an <a href="http://lv2plug.in/">LV2</a> + specification). Comments are welcome, please direct discussion to <a href="mailto:@MAIL@">@MAIL@</a>.</p> </div> - <h2 id="contents">Contents</h2> + <h2 class="sec" id="contents">Contents</h2> <div class="content"> <h3>This Document</h3> <ol id="toc"> @@ -55,13 +54,13 @@ <!-- DESCRIPTION --> - <h2 id="sec-description">1. Description</h2> + <h2 class="sec" id="sec-description">1. Description</h2> <div class="content">@COMMENT@</div> <!-- INDEX --> - <h2 id="sec-index">2. Index</h2> + <h2 class="sec" id="sec-index">2. Index</h2> <div class="content"> @INDEX@ </div> @@ -69,14 +68,14 @@ <!-- REFERENCE --> - <h2 id="sec-documentation">3. Documentation</h2> + <h2 class="sec" id="sec-documentation">3. Documentation</h2> <div class="content"> @REFERENCE@ </div> <!-- REFERENCES --> - <h2 id="sec-references">4. References</h2> + <h2 class="sec" id="sec-references">4. References</h2> <div class="content"> <dl> <dt class="label" id="ref-rfc2119">IETF RFC 2119</dt> @@ -92,7 +91,7 @@ <!-- FOOTER --> - <div class="footer"> + <div id="footer"> <span class="footer-text">Generated on @TIME@ from <a href="./@FILENAME@" class="footer-text">@FILENAME@</a> by <a href="http://drobilla.net/software/lv2specgen" class="footer-text">lv2specgen</a></span> @FOOTER@ </div> |