vote up 8 vote down star
4

What is the best documentation generator? I want to something that will easily add templates for documenting functions, classes, etc. I know there are several tools out there -- from Visual Studio plugins to external applications that take code files as input.

  • which is the best? (If language-specific, specify)
  • are there any documentation tools that could be used for multiple languages (e.g. VB.net and JavaScript)

Bonus points if they're free / open source.

flag

68% accept rate

6 Answers

vote up 11 vote down check

http://www.stack.nl/~dimitri/doxygen/ is probably a good place to start.

From the site: "Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."

For JavaScript, there's http://jsdoc.sourceforge.net/, but it's not multi-language.

For VB.NET, there's http://vbdox.sourceforge.net/, also not multi-language.

link|flag
I accepted this answer because it was thorough but I really would still like to see a single solution for both .net and JS – pc1oad1etter Mar 18 at 3:12
vote up 5 vote down

I really like Doxygen. It works for "C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."

It supports several output formats, and it will also generate hierarchical and "call" charts, using the dot program.

link|flag
vote up 3 vote down

As others have said, Doxygen is probably your best bet. It works across many different languages, and just as importantly, it works with a number of different commenting styles.

For example, in C# you can continue to use the xml documentation in order to get the intellisense benefits that come with it as well as the ability to also use other tools such as the sandcastle help file builder. In other languages, you're still free to use more concise styles.

It can generate output in a number of different ways, including html, man page, ps, pdf (with LaTex), and a few others, I believe.

link|flag
vote up 2 vote down

there are several good options but I also cast a vote for Doxygen.

link|flag
vote up 0 vote down

I use Doxygen too. I even created a shortcut to document methods with ctrl+shift+d in VAX.

link|flag
vote up 0 vote down

I vote for Doxygen as well. I am using Doxygen for C#.NET and it generates class diagrams, inheritance diagrams, etc. Here is an informative blog post.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.