-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocumentation.lisp
151 lines (104 loc) · 5.42 KB
/
documentation.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
(in-package #:org.shirakumo.documentation-utils)
(docs:define-docs
(variable *documentation-tests*
"Holds an alist of documentation types to test functions.
The function should take one argument, the specifier, and
return non-NIL if the symbol is bound for the given type.")
(function documentation-test
"Access the documentation test function for the given type.
See *DOCUMENTATION-TESTS*")
(function remove-documentation-test
"Remove the documentation test function for the given type.
See *DOCUMENTATION-TESTS*")
(function define-documentation-test
"Shorthand to define a documentation test function.
See *DOCUMENTATION-TESTS*")
(variable *documentation-translators*
"Holds an alist of documentation types to translator functions.
The function should take one argument, the specifier expression, and
return a documentation form suitable to access the documentation
for the given type.")
(function documentation-translator
"Access the documentation translator function for the given type.
See *DOCUMENTATION-TRANSLATORS*")
(function remove-documentation-translator
"Remove the documentation translator function for the given type.
See *DOCUMENTATION-TRANSLATORS*")
(function define-documentation-translator
"Shorthand to define a documentation translator function.
See *DOCUMENTATION-TRANSLATORS*")
(function define-documentation-alias
"Shorthand to define an alias to a translator.
This simply sets a delegating function that refers to the given type.
See *DOCUMENTATION-TRANSLATORS*")
(function check
"Checks whether all symbols have documentation for all known types.
If documentation is not set for a given symbol and type combination, a
warning is signalled.
See *DOCUMENTATION-TESTS*")
(variable *default-formatter*
"Variable for the default formatter to use.
This should be either a DOCUMENTATION-FORMATTER instance, or a symbol
naming the class of one.
By default this value is an instance of PLAIN-FORMATTER.
See DOCUMENTATION-FORMATTER
See PLAIN-FORMATTER
See DEFINE-DOCS")
(type documentation-formatter
"Base class for all documentation formatters.
A documentation formatter is responsible for translating user-defined
documentation expressions into docstrings usable by the underlying
documentation storage. This can also be used to hook it into other systems
that access documentation and may enrich it with further styling or
information.
The only relevant function for this class is FORMAT-DOCUMENTATION, which
is used to perform the translation.
See FORMAT-DOCUMENTATION")
(function format-documentation
"Processes the documentation string according to the formatter's rules.
Passed along are the three values that make up a documentation definition:
- The fundamental type of the definition as used in DOCUMENTATION.
- An additional set of variants used to distinguish more complicated
definitions. For instance, for methods this would be the method qualifiers.
- The expression used for the actual documentation. This is always the last
expression within a documentation definition expression.
The function should either error on an invalid documentation expression, or
return a string to be passed to the underlying documentation storage.
You may use this function to store the documentation expression elsewhere
so that it may be processed into different formats using additional markup
than is appropriate for plain strings.
See DOCUMENTATION-FORMATTER")
(type plain-formatter
"A formatter that only allows strings and emits them verbatim.
This is the default formatter.
See DOCUMENTATION-FORMATTER")
(function split-body-options
"Splits the body of expressions into two parts, a plist, and a body.
Returned are two values: a plist, and a body. The plist is composed of
all keyword-value pairs found at the beginning of the body. The returned
body is all the remaining expressions.")
(function removef
"Removes the given set of keys from the plist and returns a fresh copy.")
(function define-docs
"Allows you to comfortably and easily set the documentation for your library.
Each expression in the body can either take a two or many argument structure.
In the two argument structure, the type is implicitly assumed to be
FUNCTION. The first argument is then the specifier, and the second the
documentation. In the many argument structure the first argument is the
type, the last is the documentation, and everything in between the specifier.
The expansion of the documentation accessor --and thus the structure of
the specifier-- is dependant on the applicable documentation translator.
By default, the expansion is simply (CL:DOCUMENTATION SPECIFIER TYPE).
In addition to the actual documentation expressions, the docs definition may
begin with a set of keyword-value pairs. These options supply initargs for
the documentation formatter. By default, the formatter is *DEFAULT-FORMATTER*,
but a formatter class of your own can be selected with the :FORMATTER option.
This formatter will then translate the documentation expression at compile time
to reduce it into a docstring as expected by the underlying documentation
storage. Note that the initarg values are used at macroexpansion time, and so
are used as literals. If the chosen formatter is already a formatter instance,
the initargs are used with REINITIALIZE-INSTANCE. Otherwise if the formatter
is a symbol, MAKE-INSTANCE Is used.
See *DOCUMENTATION-TRANSLATORS*
See FORMAT-DOCUMENTATION
See *DEFAULT-FORMATTER*"))