-
Notifications
You must be signed in to change notification settings - Fork 82
Marginalia Quick Start
Currently Marginalia can be used in a number of ways as described below.
You can download the Marginalia 0.5.0 jar including packaged dependencies from Github.
Running Marginalia given the jar file linked above is as easy as:
java -jar marginalia-0.5.0-standalone.jar
This will search the PWD
for a src
directory which it will then traverse looking for Clojure source files to parse and generate documentation for. Marginalia also takes specific locations and files to generate docs for:
java -jar marginalia-0.5.0-standalone.jar <file1> <file2> ... <filen>
Arguments can be specific files or directories.
To use Marginalia in your own projects simply add the following to your project.clj
file in the :dev-dependencies
section:
[marginalia "0.5.0"]
After executing lein deps
you can generate your complete source documentation with the following command:
lein marg
Marginalia accepts other options as outlined in the Command Line section above.
Not yet supported.