epuccini / argdoc

Simple but working package documentation tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

argdoc - simple package documentation library for common lisp



Dependencies are "alexandria" and "cl-ppcre".

To load and use this library, cd into the "src/" directory, start your lisp (testet on sbcl, ecl, ccl) and execute:

 (asdf:load-system :argparse)

To create arparse-package documentation:

(asdf:load-system :argparse-app)
(main)

To create a package documentation for a given package xxx:

 (argdoc:document :package :xxx
                :filename "xxx.html"
                :path "../doc/"
                :doc-type 'argdoc:doc-html)

When you create a html-file, then copy the css-file in ../doc to your ouput directory.

About

Simple but working package documentation tool

License:Other


Languages

Language:Common Lisp 100.0%