My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
TemplateGallery  
Templates, templates, templates.
Updated Aug 4, 2011 by micm...@gmail.com

This is a gallery of templates available for use with JsDoc Toolkit.

Version 2 Templates

CodeView

Wouter Bos' new HTML template for JSDoc, called Codeview.

jProton

Pedro Simonetti's amazing contribution has collapsing menus, and many customizations. Definitely worth a look.

Version 1.4 Templates

Sweet Template

Simple, easy to understand format.

  • Included in the regular distribution.

Sunny Template

If you wish your documentation to be most like JavaDoc, this template is meant for you. But try Old English as well.

  • Included in the regular distribution.

Mad Template

Colorful and shiny. This is a very attractive and fun addition to the template collection.

Old English Template

A better JavaDoc style template. Includes support for inheritance tree.

Spicey Template

Super usable and easy to understand. Has many enhancements like collapsable tree-style menus.

Comment by tomgreu...@gmail.com, May 21, 2008

The downloadlink of the jProton "Outline Template 0.1 for JsDoc? Tookit 2.0" is a bit hard to find, so here it is: http://jproton.googlecode.com/files/outline.template-0.1.zip.

Comment by j.tu...@gmail.com, Aug 9, 2008

A little Bash script to translate most of the jProton's template (change all those vars), it also changes the out-dir to "DIR". It assumes you are in the "templates" dir. I hope someone improve it.

DIR="outline_es"
DEFINED="Definido en"
AUTOR="Autor"
METHODL="Listado de Métodos"
METHODD="Detalle de los Métodos"
PARMS="Parámetros"
RETURNS="Devuelve"
INDEXC="Índice: Clases"
INDEXF="Índice: Archivos"
TITLE="Librería JavaScript - JSDoc"

for f in $DIR/*.tmpl $DIR/*.js
do
echo $f
sed -i -e 's/\/outline\//\/'$BASE_DIR'\//g' -e "s/Defined in/$DEFINED/g" -e "s/Author/$AUTOR/g" -e "s/Method Summary/$METHODL/g" -e "s/Method Detail/$METHODD/g" -e "s/Parameters/$PARMS/g" -e "s/Returns/$RETURNS/g" -e "s/File Index/$INDEXF/g" -e "s/Class Index/$INDEXC/g" $f 
done
Powered by Google Project Hosting