Hi, I have some JavaScript to document and am not sure which tool is best to use - ideally I would like to publish the docs online but also have an offline browsable version. I know there are more tools about than jsdoc nowadays - any experiences of different doc tools for JavaScript would be useful. If it has a maven plugin that would be a bonus but not required.
|
5
|
|||||||
|
|
|
Natural Docs is one option that can produce nicely formatted HTML documentation (example output), with at least basic support for JavaScript. Someone's also written a doxygen helper script to use that with JavaScript as well. |
||
|
|
|
|
JsDoc-Toolkit is also worth a look: http://code.google.com/p/jsdoc-toolkit/ |
||
|
|
|
|
Code Illuminated: One of the Mozilla developers has created a documentation tool that's been used to document the Ubiquity extension. Read about it in the blog post: Beautifully Documented Code. Here's a relevant extract to give you some idea what it is:
|
||||
|
|
|
Slightly off topic for this, but related enough I feel to warrant an answer. The vsdoc convention is useful for getting intellisense in Visual Studio. The folllowing link is probably a good place to start: |
||
|
|
|
|
I found some of my own after some research:
There is also a Maven JSTools Plugin that supports JSDoc Toolkit. |
|||
|
|

