People pointed out that some git repositories of mine on common-lisp.net were not clonable. I fixed the problem and now you should be able to clone the repositories for NEW-OP and XHTMΛ.
(cheers)
git
repository can be found there.(document #P"asdf/uiop/"
:documentation-title "UIOP"
:everything t
:exclude-files (list #P"/Path/To/asdf3/asdf/uiop/asdf-driver.asd")
:special-methods-defs-files (list #P"/This/file/here/helambda-asdf3.lisp")
)
document
function is called on a folder ("asdf/uiop/"
) with an obvious title. The other arguments have the following meaning:
:everything t
tells HEΛP to generate documentation pages for everything; these are stored in the dictionary
subfolder with file-names which should be relatively obvious. Ordinarily, HEΛP would generate doc pages only for public (i.e., exported) interfaces.:exclude-files
is a list of files to forget about; UIOP has one file with an unqualified DEFSYSTEM
in, which confuses HEΛP.special-methods-defs-files
is a list of files containing specialized definitions to handle a library extra "definition" forms and macros. UIOP has a number of them.