14 lines
343 B
Plaintext
14 lines
343 B
Plaintext
(load "path.carp")
|
|
|
|
(defndynamic gendocs []
|
|
(do
|
|
(Project.config "title" "path")
|
|
(Project.config "docs-directory" "./docs/")
|
|
(Project.config "docs-logo" "")
|
|
(Project.config "docs-styling" "style.css")
|
|
(Project.config "docs-generate-index" false)
|
|
(save-docs Path)))
|
|
|
|
(gendocs)
|
|
(quit)
|