abzfarah / jsdoc-toolkit

Automatically exported from code.google.com/p/jsdoc-toolkit
0 stars 0 forks source link

Documentation for multiple files gets lumped into one page #290

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
java -jar jsrun.jar app\run.js -a -t=templates\jsdoc -r=1 C:\mycode\

What is the expected output? What do you see instead?
When using the recursive flag, all of the documented methods for each .js
file get lumped into one html file. Is there a way to have a main index
page that lists each .js file and links to their own separate documentation
page? If not, can this be added into a future release?

What version of the product are you using? On what operating system?
v2.3.2 / v2.3.3 WindowsXP

Original issue reported on code.google.com by lenk...@gmail.com on 17 May 2010 at 5:32

GoogleCodeExporter commented 8 years ago
The template groups the documented symbols in your code by namespace and class. 
If all your methods belong to a single class or namespace, then they will 
indeed appear in the file devoted to that class or namespace. However that's 
just a consequence of the template, you can (and are always encouraged to) 
tweak or fully reinvent a new template to display the documentation data 
however you wish.

Original comment by micmath on 18 Jul 2010 at 6:35