make-docs.lisp @ f67e0d7ace27

Add some docs
author Steve Losh <steve@stevelosh.com>
date Wed, 17 Aug 2016 00:10:00 +0000
parents (none)
children 3ba725d5a905
(ql:quickload "cl-d-api")

(defparameter *document-packages*
  (list "LOSH"))

(defparameter *output-path*
  #p"DOCUMENTATION.markdown" )

(defparameter *header*
  "This library is my own personal utility belt.

  Everything I write in here is MIT/X11 licensed, so you're free to use it if
  you want.  But I make no guarantees about backwards compatibility -- I might
  change and break things at any time.  Use this at your own risk.

  ")

(d-api:generate-documentation
  :losh
  *output-path*
  *document-packages*
  *header*
  :title "Documentation for `cl-losh`")