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

16
doc/template/tmpl/exceptions.tmpl vendored Normal file
View File

@@ -0,0 +1,16 @@
<?js if (data.description) { ?>
<div class="param-desc">
<?js= description ?>
</div>
<?js } ?>
<?js if (data.type && data.type.names) {?>
<dl>
<dt>
Type
</dt>
<dd>
<?js= this.partial('type.tmpl', data.type.names) ?>
</dd>
</dl>
<?js } ?>