Reputation: 134227
Javadoc can be used to automatically generate API documentation for Java code, using annotations in the comments above each class, method, etc.
Along those same lines, is there any tool that can generate API documentation from Scheme code?
Upvotes: 3
Views: 1227
Reputation: 134227
After posting this question, I realized that SchemeDoc actually links back to this section in the Scheme FAQ, which contains a handful of tools:
Are there any tools for documenting Scheme code?
Upvotes: 0
Reputation: 17223
Here's the eternal answer to any answer about Scheme: yes, there are about fifty such systems.
One pointer among many: Racket's "scribble" system supports literate programming, a more aggressive form of the docstring idea. Here's a link:
http://docs.racket-lang.org/scribble/lp.html
There are many others.
John Clements
Upvotes: 2