mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19:18 +02:00
12 lines
428 B
Scheme
12 lines
428 B
Scheme
|
|
(define-library (chibi doc)
|
|
(import
|
|
(chibi) (scheme eval) (srfi 1)
|
|
(chibi modules) (chibi ast) (chibi io) (chibi match)
|
|
(chibi time) (chibi filesystem) (chibi process)
|
|
(chibi scribble) (chibi sxml) (chibi highlight)
|
|
(chibi type-inference))
|
|
(export generate-docs expand-docs fixup-docs
|
|
extract-module-docs extract-file-docs
|
|
make-default-doc-env make-module-doc-env)
|
|
(include "doc.scm"))
|