Adding a JSDoc 3 template.

This commit is contained in:
Tim Schaub
2012-09-24 16:59:27 +02:00
parent c3a41c967e
commit 57d75ace5d
22 changed files with 1669 additions and 0 deletions

10
doc/template/tmpl/examples.tmpl vendored Normal file
View File

@@ -0,0 +1,10 @@
<?js
data.forEach(function(example) {
if (example.caption) {
?>
<p class="code-caption"><?js= example.caption ?></p>
<?js } ?>
<pre class="prettyprint"><code><?js= example.code ?></code></pre>
<?js
});
?>