;; Clear documentation of `*package*`.
(doc:start)
(doc:NAME "
Clack - Web Application Environment for Common Lisp
")
(doc:DESCRIPTION "
Clack is a Web Application Environment for Common Lisp inspired by Python's WSGI and Ruby's Rack. Your awesome framework should base on this.
")
;; I recommend to use with cl-annot (https://github.com/arielnetworks/cl-annot).
;; It allows you to write docs by annotation-style.
(cl-annot:enable-annot-syntax)
(doc:start)
@doc:NAME "
Clack - Web Application Environment for Common Lisp
" Clack.Util.Doc enables easy writing package documentations with Markdown.
Clear the docstring of `*package*`. I recommend you to put `(doc:start)` before calling doc functions, because they append sections duplicately when the packaged is reloaded.
Set documentation to current package