I absolutely love the annotated source code that accompanies the underscore.js library: http://documentcloud.github.com/underscore/docs/underscore.html

  1. How did they do that?
  2. Is there a script that'll pull out the code comments and auto-create this kind of html documentation?
link|improve this question

73% accept rate
feedback

1 Answer

up vote 33 down vote accepted

Appears to be Docco: http://jashkenas.github.com/docco/


From the site:

"Docco is a quick-and-dirty, hundred-line-long, literate-programming-style documentation generator. It produces HTML that displays your comments alongside your code. Comments are passed through Markdown, and code is passed through Pygments syntax highlighting. ..."

link|improve this answer
2  
I found the Python version easier to install: fitzgen.github.com/pycco – Pindatjuh May 3 '11 at 12:08
feedback

Your Answer

 
or
required, but never shown

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