(ns your-namespace
(:require clojure.contrib.gen-html-docs))
Generates a single HTML page that contains the documentation for one or more Clojure libraries.
Usage: (generate-documentation libs)
Returns a string which is the HTML documentation for the libraries named by libs. Libs is a vector of symbols identifying Clojure libraries.Source
Usage: (generate-documentation-to-file path libs)
Calls generate-documentation on the libraries named by libs and emits the generated HTML to the path named by path.Source