Justin Ethier
Justin Ethier

Reputation: 134227

Scheme: API documentation generator?

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

Answers (3)

Justin Ethier
Justin Ethier

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

John Clements
John Clements

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

Morten Kristensen
Morten Kristensen

Reputation: 7623

Perhaps you could take a look at this one: SchemeDoc

Upvotes: 1

Related Questions