PAX Manual
Table of Contents
- 1
mgl-pax
ASDF System - 2
mgl-pax/full
ASDF System - 3 Links
- 4 Background
- 5 Tutorial
- 6 Basics
- 7 Locative Types
- 8 Navigating Sources in Emacs
- 9 Generating Documentation
- 10 Transcripts
- 11 Writing Extensions
[in package MGL-PAX with nicknames PAX]
1 mgl-pax
ASDF System
- Version: 0.1.0
- Description: Exploratory programming tool and documentation generator.
- Long Description: The set of dependencies of the
mgl-pax
system is kept light, and its heavier dependencies are autoloaded via ASDF when the relavant functionality is accessed. See themgl-pax/navigate
,mgl-pax/document
,mgl-pax/transcribe
andmgl-pax/full
systems. To keep deployed code small, client systems should declare an ASDF dependency on this system, never on the others, which are intended for autoloading and interactive use. - Licence: MIT, see COPYING.
- Author: Gábor Melis
- Mailto: mega@retes.hu
- Homepage: http://melisgl.github.io/mgl-pax
- Bug tracker: https://github.com/melisgl/mgl-pax/issues
- Source control: GIT
2 mgl-pax/full
ASDF System
- Description:
mgl-pax
with all features preloaded. - Licence: MIT, see COPYING.
- Author: Gábor Melis
- Mailto: mega@retes.hu
3 Links
Here is the official repository and the HTML documentation for the latest version.
4 Background
As a user, I frequently run into documentation that's incomplete
and out of date, so I tend to stay in the editor and explore the
code by jumping around with SLIME's M-.
.
As a library author, I spend a great deal of time polishing code but
precious little writing documentation.
In fact, I rarely write anything more comprehensive than docstrings for exported stuff. Writing docstrings feels easier than writing a separate user manual, and they are always close at hand during development. The drawback of this style is that users of the library have to piece the big picture together themselves.
That's easy to solve, I thought, let's just put all the narrative that holds docstrings together in the code and be a bit like a Literate Programmer turned inside out. The original prototype, which did almost everything I wanted, was this:
(defmacro defsection (name docstring)
`(defun ,name () ,docstring))
Armed with this defsection
, I soon found myself
organizing code following the flow of user-level documentation and
relegated comments to implementation details entirely. However, some
parts of defsection
docstrings were just listings of
all the functions, macros and variables related to the narrative,
and this list was repeated in the defpackage
form complete with
little comments that were like section names. A clear violation of
OAOO, one of them had to go, so defsection
got
a list of symbols to export.
That was great, but soon I found that the listing of symbols is
ambiguous if, for example, a function, a compiler macro and a class
are named by the same symbol. This did not concern exporting, of
course, but it didn't help readability. Distractingly, on such
symbols, M-.
was popping up selection dialogs. There were two
birds to kill, and the symbol got accompanied by a type, which was
later generalized into the concept of locatives:
(defsection @introduction ()
"A single line for one man ..."
(foo class)
(bar function))
After a bit of elisp hacking, M-.
was smart enough to
disambiguate based on the locative found in the vicinity of the
symbol, and everything was good for a while.
Then I realized that sections could refer to other sections if there
were a section
locative. Going down that path, I soon began to feel
the urge to generate pretty documentation as all the necessary
information was manifest in the defsection
forms. The design
constraint imposed on documentation generation was that following
the typical style of upcasing symbols in docstrings there should be
no need to explicitly mark up links: if M-.
works, then the
documentation generator shall also be able find out what's being
referred to.
I settled on Markdown as a reasonably non-intrusive format, and a few thousand lines later PAX was born.
5 Tutorial
PAX provides an extremely poor man's Explorable Programming environment. Narrative primarily lives in so called sections that mix markdown docstrings with references to functions, variables, etc, all of which should probably have their own docstrings.
The primary focus is on making code easily explorable by using
SLIME's M-.
(slime-edit-definition
). See how to
enable some fanciness in Navigating Sources in Emacs.
Generating Documentation from sections and all the referenced items
in Markdown or HTML format is also implemented.
With the simplistic tools provided, one may accomplish similar effects as with Literate Programming, but documentation is generated from code, not vice versa and there is no support for chunking. Code is first, code must look pretty, documentation is code.
Docstrings
PAX's automatically recognizes and marks up code with backticks and links code to their definitions.
(document "&KEY arguments such as :IF-EXISTS are common.")
=> ("`&KEY` arguments such as `:IF-EXISTS` are common.
")
(document "AND denotes a macro and a type specifier.
Here we focus on the macro AND.")
=> ("`AND`([`0`][4954] [`1`][330f]) denotes a macro and a type specifier.
Here we focus on the macro [`AND`][4954].
[330f]: http://www.lispworks.com/documentation/HyperSpec/Body/t_and.htm \"AND TYPE\"
[4954]: http://www.lispworks.com/documentation/HyperSpec/Body/m_and.htm \"AND MGL-PAX:MACRO\"
")
These features are designed to handle a common style of docstrings
with minimal additional markup. The following is the output
of (mgl-pax:document #'abort)
. Note that the docstring of the
abort
function was not written with PAX in mind.
[function] ABORT &OPTIONAL CONDITION
Transfer control to a restart named
abort
, signalling acontrol-error
if none exists.
A Complete Example
Here is an example of how it all works together:
(mgl-pax:define-package :foo-random
(:documentation "This package provides various utilities for random.
See FOO-RANDOM:@FOO-RANDOM-MANUAL.")
(:use #:common-lisp #:mgl-pax))
(in-package :foo-random)
(defsection @foo-random-manual (:title "Foo Random manual")
"Here you describe what's common to all the referenced (and
exported) functions that follow. They work with *FOO-STATE*, and
have a :RANDOM-STATE keyword arg. Also explain when to choose
which."
(foo-random-state class)
(state (reader foo-random-state))
"Hey we can also print states!"
(print-object (method () (foo-random-state t)))
(*foo-state* variable)
(gaussian-random function)
(uniform-random function)
;; This is a subsection.
(@foo-random-examples section))
(defclass foo-random-state ()
((state :reader state)))
(defmethod print-object ((object foo-random-state) stream)
(print-unreadable-object (object stream :type t)))
(defvar *foo-state* (make-instance 'foo-random-state)
"Much like *RANDOM-STATE* but uses the FOO algorithm.")
(defun uniform-random (limit &key (random-state *foo-state*))
"Return a random number from the between 0 and LIMIT (exclusive)
uniform distribution."
nil)
(defun gaussian-random (stddev &key (random-state *foo-state*))
"Return a random number from a zero mean normal distribution with
STDDEV."
nil)
(defsection @foo-random-examples (:title "Examples")
"Let's see the transcript of a real session of someone working
with FOO:
```cl-transcript
(values (princ :hello) (list 1 2))
.. HELLO
=> :HELLO
=> (1 2)
(make-instance 'foo-random-state)
==> #<FOO-RANDOM-STATE >
```")
Note how (variable *foo-state*)
in the defsection
form both
exports *foo-state*
and includes its documentation in
@foo-random-manual
. The symbols variable
and
function
are just two instances of locatives, which are
used in defsection
to refer to definitions tied to symbols.
(document @foo-random-manual)
generates fancy markdown or HTML
output with automatic markup and autolinks uppercase words
found in docstrings, numbers sections, and creates a table of
contents.
One can even generate documentation for different but related libraries at the same time with the output going to different files but with cross-page links being automatically added for symbols mentioned in docstrings. See Generating Documentation for some convenience functions to cover the most common cases.
The transcript in the code block tagged with
cl-transcript
is automatically checked for up-to-dateness when
documentation is generated.
6 Basics
Now let's examine the most important pieces.
[macro] defsection name (&key (package '*package*) (readtable '*readtable*) (export t) title link-title-to (discard-documentation-p *discard-documentation-p*)) &body entries
Define a documentation section and maybe export referenced symbols. A bit behind the scenes, a global variable with
name
is defined and is bound to asection
object. By convention, section names start with the character@
. See Tutorial for an example.Entries
entries
consists of docstrings and references in any order. Docstrings are arbitrary strings in markdown format.references
are given in the form(object locative)
. For example,(foo function)
refers to the functionfoo
,(@bar section)
says that@bar
is a subsection of this one.(baz (method () (t t t)))
refers to the default method of the three argument generic functionbaz
.(foo function)
is equivalent to(foo (function))
. See Locatives and References for more.The same object may occur in multiple references, typically with different locatives, but this is not required.
The references are not looked up (see
resolve
in the Locatives and References API) until documentation is generated, so it is allowed to refer to things yet to be defined.Exporting
If
export
is true (the default),name
and the objects of references amongentries
which aresymbol
s are candidates for exporting. A candidate symbol is exported ifit is accessible in
package
, andthere is a reference to it in the section being defined which is approved by
exportable-reference-p
.
See
define-package
if you use the export feature. The idea with confounding documentation and exporting is to force documentation of all exported symbols.Misc
title
is a string containing markdown ornil
. If non-NIL, it determines the text of the heading in the generated output.link-title-to
is a reference given as an(object locative)
pair ornil
, to which the heading will link when generating HTML. If not specified, the heading will link to its own anchor.When
discard-documentation-p
(defaults to*discard-documentation-p*
) is true,entries
will not be recorded to save memory.
[variable] *discard-documentation-p* nil
The default value of
defsection
'sdiscard-documentation-p
argument. One may want to set*discard-documentation-p*
to true before building a binary application.
[macro] define-package package &rest options
This is like
cl:defpackage
but silences warnings and errors signaled when the redefined package is at variance with the current state of the package. Typically this situation occurs when symbols are exported by callingexport
(as is the case withdefsection
) as opposed to adding:export
forms to thedefpackage
form and the package definition is subsequently reevaluated. See the section on package variance in the SBCL manual.The bottom line is that if you rely on
defsection
to do the exporting, then you'd better usedefine-package
.
6.1 Locatives and References
To navigate with M-.
and to generate
documentation we need to refer to things
such as the foo
type or the foo
function.
(deftype foo ()
"type doc"
'(or integer real).
(defun foo ()
"function doc"
7)
The docstring is available via (cl:documentation 'foo 'type)
,
where type
- called doc-type
- is what tells cl:documentation
that we want the docstring of the type named foo
. This design
supports disambiguation and working with things that are not
first-class, such as types.
PAX generalizes doc-type
to the concept of locatives, which may
also take arguments. An object and a locative together are called
a reference, and they identify a definition. reference
s are actual
objects, but often they appear as an (object locative)
list (see
defsection
) or as "OBJECT LOCATIVE"
in docstrings (see
Linking to Code for the various forms possible).
(defsection @foos ()
"We discuss the FOO type and the FOO function."
(foo type)
(foo function))
-
A reference is an object plus a locative, and it identifies a definition. For example, the symbol
foo
as the object and the symbolfunction
as the locative together refer to the global definition of the functionfoo
.reference
objects can be represented as an(object locative)
list as indefsection
entries, or textually as"FOO function"
wherefoo
is a name or similar (see Codification and Linking to Code).
-
objects are symbols or strings which name functions, types, packages, etc. Together with locatives, they form references.
-
locatives specify a type of definition such as
function
orvariable
and together with objects form references.A locative can be a symbol or a list whose
car
is a symbol. In either case, the symbol is called the locative type while the rest of the elements are the locative arguments. See themethod
locative or thelocative
locative for examples of locative types with arguments.
6.1.1 Locatives and References API
(make-reference 'foo 'variable)
constructs a reference
that
captures the path to take from an object (the symbol foo
) to an
entity of interest (for example, the documentation of the variable).
The path is called the locative. A locative can be applied to an
object like this:
(locate 'foo 'variable)
which will return the same reference as (make-reference 'foo
'variable)
. Operations need to know how to deal with references,
which we will see in the Writing Extensions.
Naturally, (locate 'foo 'function)
will simply return #'foo
, no
need to muck with references when there is a perfectly good object.
-
A
reference
represents a path (reference-locative
) to take from an object (reference-object
).
- [reader] reference-object reference (:object)
- [reader] reference-locative reference (:locative)
- [function] make-reference object locative
[function] locative-type locative
Return the first element of
locative
if it's a list. If it's a symbol, then return that symbol itself.
[function] locative-args locative
The
rest
oflocative
if it's a list. If it's a symbol then it'snil
.
[function] locate object locative &key (errorp t)
Follow
locative
fromobject
and return the object it leads to or areference
if there is no first-class object corresponding to the location. Depending onerrorp
, alocate-error
condition is signaled ornil
is returned if the lookup fails.(locate 'locate 'function) ==> #<FUNCTION LOCATE> (locate 'no-such-function 'function) .. debugger invoked on LOCATE-ERROR: .. Could not locate NO-SUCH-FUNCTION FUNCTION. .. NO-SUCH-FUNCTION does not name a function. (locate 'locate-object 'method) .. debugger invoked on LOCATE-ERROR: .. Could not locate LOCATE-OBJECT METHOD. .. The syntax of the METHOD locative is (METHOD <METHOD-QUALIFIERS> <METHOD-SPECIALIZERS>).
[condition] locate-error error
Signaled by
locate
when the lookup fails anderrorp
is true.
- [reader] locate-error-message locate-error (:message)
- [reader] locate-error-object locate-error (:object)
- [reader] locate-error-locative locate-error (:locative)
[function] resolve reference &key (errorp t)
A convenience function to
locate
reference
's object with its locative.
6.2 Parsing
-
A word is a string from which we want to extract an object. When Navigating, the word is
slime-symbol-at-point
. When Generating Documentation, it is a non-empty string between whitespace characters in a docstring.
-
A name is a string that names an
intern
edsymbol
, apackage
(0
1
), or anasdf:system
, that is, a possible object. Names are constructed from words by possibly trimming leading and trailing punctuation symbols and removing certain plural suffixes.For example, in
"X and Y must be LISTs."
, although the word is"LISTs."
, it gets trimmed to"LISTs"
, then the plural suffix"s"
is removed to get"LIST"
. Out of the three candidates for names,"LISTs."
,"LISTs"
, and"LIST"
, the ones that name interned symbols and such are retained for purposes for Navigating and Generating Documentation.The punctuation characters for left and right trimming are
#<
and,:.>
, respectively. The plural suffixes considered ares
,es
,ses
,zes
, andren
(all case insensitive).Thus
"CHILDREN"
and"BUSES"
may have the names"CHILD"
and"BUS"
in them.
7 Locative Types
As we have already briefly seen in defsection
and
Locatives and References, locatives allow us to refer to, document,
and find the source location of various definitions beyond what
standard Common Lisp offers. See Writing Extensions for a more detailed
treatment. The following are the locatives types supported out of
the box. As all locative types, they are named by symbols, which
should make it obvious what kind of things they refer to. Unless
otherwise noted, locatives take no arguments.
When there is a corresponding CL type, a locative can be resolved to
a unique object as is the case in (locate 'foo 'class)
returning
#<class foo>
. Even if there is no such CL type, the source
location and the docstring of the defining form is recorded (see
locate-and-find-source
, locate-and-document
in the Writing Extensions),
which makes navigating the sources with M-.
(see
Navigating Sources in Emacs) and Generating Documentation possible.
7.1 Locatives for Variables
[locative] variable &optional initform
Refers to a global special variable.
initform
, or if not specified, the global value of the variable is included in the documentation.;;; A REFERENCE is returned because there is no such type as VARIABLE. (locate '*FORMAT* 'variable) ==> #<REFERENCE *FORMAT* VARIABLE>
For the output of
(document (make-reference '*format* 'variable))
, see*format*
. Note that*format*
is unbound. If the variable isboundp
, then its current value is included in the documentation. See*document-link-code*
for an example output. To override the current value,initform
may be provided. This is particulary useful if the value of the variable is something undesirable such as#<MY-CLASS {100171ED93}>
.
[locative] constant &optional initform
Refers to a variable defined with
defconstant
.initform
, or if not specified, the value of the constant is included in the documentation. Theconstant
locative is like thevariable
locative, but it also checks that its object isconstantp
.
7.2 Locatives for Macros
-
Refers to a global macro, typically defined with
defmacro
or a special operator. See thefunction
locative for a note on arglists.
-
Refers to a global symbol macro, defined with
define-symbol-macro
. Note that sincedefine-symbol-macro
does not support docstrings, PAX defines methods on thedocumentation
generic function specialized fordoc-type
symbol-macro
.(define-symbol-macro my-mac 42) (setf (documentation 'my-mac 'symbol-macro) "This is MY-MAC.") (documentation 'my-mac 'symbol-macro) => "This is MY-MAC."
-
Refers to a compiler macro, typically defined with
define-compiler-macro
. See thefunction
locative for a note on arglists.
7.3 Locatives for Functions
-
Refers to a global function, typically defined with
defun
.Note that the arglist in the generated documentation depends on the quality of
swank-backend:arglist
. It may be that default values of optional and keyword arguments are missing.
-
Refers to a
generic-function
, typically defined withdefgeneric
.
[locative] method method-qualifiers method-specializers
See
cl:find-method
for the description of the argumentsmethod-qualifiers
andmethod-specializers
. For example, a(foo (method () (t (eql xxx))))
as adefsection
entry refers to this method:(defmethod foo (x (y (eql 'xxx))) ...)
method
is notexportable-locative-type-p
.
-
Refers to a
method-combination
, defined withdefine-method-combination
.
[locative] accessor class-name
To refer to an accessor named
foo-slot
of classfoo
:(foo-slot (accessor foo))
[locative] reader class-name
To refer to a reader named
foo-slot
of classfoo
:(foo-slot (reader foo))
[locative] writer class-name
To refer to a writer named
foo-slot
of classfoo
:(foo-slot (writer foo))
-
This is a synonym of
function
with the difference that the often ugly and certainly uninformative lambda list will not be printed.
7.4 Locatives for Types and Declarations
-
This locative can refer to any Lisp type. For types defined with
deftype
, an attempt is made at printing the arguments of type specifiers. Whentype
refers to acl:class
, the class is documented as an opaque type: no mention is made of that it is a class or its superclasses. Use theclass
locative if those things are part of the contract.
-
Naturally,
class
is the locative type forclass
es. To refer to a class namedfoo
:(foo class)
In the generated documention, only superclasses denoted by external symbols are included.
-
Refers to a declaration, used in
declare
,declaim
andproclaim
. For example,[DEBUG][declaration]
refers to the standarddebug
declaration and links to the hyperspec if*document-link-to-hyperspec*
is true.User code may also define new declarations with CLTL2 functionality, but there is no way to provide a docstring.
(cl-environments:define-declaration my-decl (&rest things) (values :declare (cons 'foo things)))
Also,
M-.
(see Navigating Sources in Emacs) on declarations currently only works on SBCL.
7.5 Condition System Locatives
-
condition
is the locative type forcondition
s. To refer to a condition namedfoo
:(foo condition)
In the generated documention, only superclasses denoted by external symbols are included.
-
A locative to refer to the definition of a restart defined by
define-restart
.
[macro] define-restart symbol lambda-list &body docstring
A definer macro to hang the documentation of a restart on a symbol.
(define-restart my-ignore-error () "Available when MY-ERROR is signalled, MY-IGNORE-ERROR unsafely continues.")
Then
(my-ignore-error restart)
refers to the above definition. Note that while there is acl:restart
type, there is no corresponding source location or docstring like forcondition
s.
7.6 Locatives for Packages and Readtables
-
Refers to an asdf system. The generated documentation will include meta information extracted from the system definition. This also serves as an example of a symbol that's not accessible in the current package and consequently is not exported.
asdf:system
is notexportable-locative-type-p
.
-
Refers to a
package
, defined bydefpackage
.package
is notexportable-locative-type-p
.
-
Refers to a named
readtable
defined withnamed-readtables:defreadtable
, which associates a global name and a docstring with the readtable object. Unfortunately, source location information is not available.
7.7 Locatives for PAX Constructs
-
Refers to a
section
defined bydefsection
.section
is notexportable-locative-type-p
.
-
Refers to a
glossary-term
defined bydefine-glossary-term
.
[macro] define-glossary-term name (&key title (discard-documentation-p *discard-documentation-p*)) docstring
Define a global variable with
name
and set it to aglossary-term
object. A glossary term is just a symbol to hang a docstring on. It is a bit like asection
(0
1
) in that, when linked to, itstitle
will be the link text instead of the name of the symbol. Also as with sections, bothtitle
anddocstring
are markdown strings ornil
.Unlike sections though, glossary terms are not rendered with headings, but in the more lightweight bullet + locative + name/title style. See the glossary entry name for an example.
When
discard-documentation-p
(defaults to*discard-documentation-p*
) is true,docstring
will not be recorded to save memory.glossary-term
is notexportable-locative-type-p
.
[locative] locative lambda-list
This is the locative for locatives. When
M-.
is pressed onsome-name
in(some-name locative)
, this is what makes it possible to land at the correspondingdefine-locative-type
form. Similarly,(locative locative)
leads to this very definition.
-
Refers to a symbol in a non-specific context. Useful for preventing autolinking. For example, if there is a function called
foo
then`FOO`
will be linked (if
*document-link-code*
) to its definition. However,[`FOO`][dislocated]
will not be. With a dislocated locative,
locate
always fails with alocate-error
condition. Also see Preventing Autolinking.
-
An alias for
dislocated
, so that one can refer to an argument of a macro without accidentally linking to a class that has the same name as that argument. In the following example,format
may link tocl:format
(if we generated documentation for it):"See FORMAT in DOCUMENT."
Since
argument
is a locative, we can prevent that linking by writing:"See the FORMAT argument of DOCUMENT."
[locative] include source &key line-prefix header footer header-nl footer-nl
This pseudolocative refers to a region of a file.
source
can be astring
or apathname
in which case the whole file is being pointed to, or it can explicitly supplystart
,end
locatives.include
is typically used to include non-lisp files in the documentation (say markdown or elisp as in the next example) or regions of lisp source files. This can reduce clutter and duplication.(defsection example-section () (pax.el (include #.(asdf:system-relative-pathname :mgl-pax "src/pax.el") :header-nl "```elisp" :footer-nl "```")) (foo-example (include (:start (foo function) :end (end-of-foo-example variable)) :header-nl "```" :footer-nl "```")) (defun foo (x) (1+ x)) ;;; Since file regions are copied verbatim, comments survive. (defmacro bar ()) ;;; This comment is the last thing in FOO-EXAMPLE's ;;; documentation since we use the dummy END-OF-FOO-EXAMPLE ;;; variable to mark the end location. (defvar end-of-foo-example) ;;; More irrelevant code follows.
In the above example, pressing
M-.
onpax.el
will open thesrc/pax.el
file and put the cursor on its first character.M-.
onfoo-example
will go to the source location of the(asdf:system locative)
locative.When documentation is generated, the entire
src/pax.el
file is included in the markdown surrounded by the strings given asheader-nl
andfooter-nl
(if any). The trailing newline character is assumed implicitly. If that's undesirable, then useheader
andfooter
instead. The documentation offoo-example
will be the region of the file from the source location of thestart
locative (inclusive) to the source location of theend
locative (exclusive).start
andend
default to the beginning and end of the file, respectively.Note that the file of the source location of
:start
and:end
must be the same. Ifsource
is a pathname designator, then it must be absolute so that the locative is context independent.Finally, if specified,
line-prefix
is a string that's prepended to each line included in the documentation. For example, a string of four spaces makes markdown think it's a code block.include
is notexportable-locative-type-p
.
-
docstring
is a pseudolocative for including the parse tree of the markdowndocstring
of a definition in the parse tree of a docstring when generating documentation. It has no source location information and only works as an explicit link. This construct is intended to allow docstrings live closer to their implementation, which typically involves a non-exported definition.(defun div2 (x) "X must be an [even type][docstring]." (/ x 2)) (deftype even () "an even integer" '(satisfies oddp))
In the output of
(document #'div2)
, we have thatX must be an an even integer
.
7.8 External Locatives
-
Refers to sections in the Common Lisp hyperspec. These have no source location so
M-.
will not work. What works is linking. The following markdown examples all produce a link toclhs
3.4
, the section 'Lambda Lists', which is in file03_d.htm
.CLHS `3.4` `3.4` CLHS [3.4][] [`3.4`][] [3.4][CLHS] [Lambda Lists][clhs] [03_d][clhs]
The rules of matching sections are the following. If the object of the reference is
string=
to the section number string (without the trailing dot) or to the name of its file without the.htm
extension, then the reference refers to that section. Else, if the object is a case-insensitive substring of the title of some section, then the reference refers to the first such section in breadth-first order.To link to issue and issue summary pages, all of the above markdown examples work, just make the object of the reference the name of the issue prefixed by
issue:
orsummary:
as appropriate. For example, to refer to thearef-1d
issue use[ISSUE:AREF-1D][clhs]
and get ISSUE:AREF-1D. Similary,[SUMMARY:AREF-1D][clhs]
turns into SUMMARY:AREF-1D. Alternatively, matching the name of the file also works ([iss009][clhs]
renders as iss009)The generated links are relative to
*document-hyperspec-root*
.To detach the discussion from markdown syntax, let's see these cases through the programmatic interface.
(locate "3.4" 'clhs) ==> #<REFERENCE "3.4" CLHS> (locate "03_d" 'clhs) ==> #<REFERENCE "03_d" CLHS> (locate "lambda" 'clhs) ==> #<REFERENCE "3.4" CLHS> (locate "ISSUE:AREF-1D" 'clhs) ==> #<REFERENCE "ISSUE:AREF-1D" CLHS> (locate "SUMMARY:AREF-1D" 'clhs) ==> #<REFERENCE "SUMMARY:AREF-1D" CLHS>
8 Navigating Sources in Emacs
Integration into SLIME's M-.
(slime-edit-definition
) allows one to visit the source location of
the definition that's identified by slime-symbol-at-point
parsed
as a word and the locative before or after the symbol in a buffer.
With this extension, if a locative is the previous or the next
expression around the symbol of interest, then M-.
will go
straight to the definition which corresponds to the locative. If
that fails, M-.
will try to find the definitions in the normal
way, which may involve popping up an xref buffer and letting the
user interactively select one of possible definitions.
In the following examples, when the cursor is on one of the
characters of foo
or just after foo
, pressing M-.
will visit
the definition of function foo
:
function foo
foo function
(function foo)
(foo function)
In particular, references in a defsection
form are in (symbol
locative
) format so M-.
will work just fine there.
Just like vanilla M-.
, this works in comments and docstrings. In
the next example, pressing M-.
on foo
will visit foo
's
default method:
;;;; See FOO `(method () (t t t))` for how this all works.
;;;; But if the locative has semicolons inside: FOO `(method
;;;; () (t t t))`, then it won't, so be wary of line breaks
;;;; in comments.
With a prefix argument (C-u M-.
), one can enter a symbol plus a
locative separated by whitespace to preselect one of the
possibilities.
The M-.
extensions can be enabled by loading src/pax.el
.
8.1 mgl-pax/navigate
ASDF System
- Description: Slime
m-.
support formgl-pax
. - Long Description: Autoloaded by Slime's
m-.
whensrc/pax.el
is loaded. See Navigating Sources in Emacs. - Licence: MIT, see COPYING.
- Author: Gábor Melis
- Mailto: mega@retes.hu
9 Generating Documentation
[function] document object &key (stream t) pages (format :plain)
Write
object
informat
tostream
diverting some output topages
.format
can be anything 3BMD supports, which is currently:markdown
,:html
and:plain
.stream
may be astream
object,t
ornil
as withcl:format
.Most often, this function is called on
section
(0
1
) objects as in(document @pax-manual)
, but it supports all kinds of objects for whichdocument-object
is defined. To look up the documentation of thedocument
function itself:(document #'document)
The same with fancy markup:
(document #'document :format :markdown)
To generate the documentation for separate libraries with automatic cross-links:
(document (list @cube-manual @mat-manual) :format :markdown)
See Utilities for Generating Documentation for more.
Note that not only first-class objects can have documentation:
(document (locate 'foo 'type))
See Locatives and References for more.
There are quite a few special variables that affect how output is generated, see Codification, Linking to Code, Linking to Sections, and Miscellaneous Variables.
If
pages
isnil
andstream
isnil
, thendocument
returns the output as a string. Ifpages
isnil
butstream
is not, thendocument
returnsnil
. The rest of this description deals with how to generate multiple pages.Pages
The
pages
argument is to create multi-page documents by routing some of the generated output to files, strings or streams.pages
is a list of page specification elements. A page spec is a plist with keys:objects
,:output
,:uri-fragment
,:source-uri-fn
,:header-fn
and:footer-fn
.objects
is a list of objects (references are allowed but not required) whose documentation is to be sent to:output
.When documentation for an object is generated, the first matching page spec is used, where the object matches the page spec if it is reachable from one of its
:objects
.:output
can be a number things:If it's a list whose first element is a string or a pathname, then output will be sent to the file denoted by that and the rest of the elements of the list are passed on to
cl:open
. One extra keyword argument is:ensure-directories-exist
. If it's true,ensure-directories-exist
will be called on the pathname before it's opened.If it's
nil
, then output will be collected in a string.If it's
t
, then output will be sent to*standard-output*
.If it's a stream, then output will be sent to that stream.
If some pages are specified,
document
returns a list of designators for generated output. If a page whose:output
refers to a file that was created (which doesn't happen if nothing would be written to it), then the corresponding pathname is included in the list. For strings the string itself, while for streams the stream object is included in the list. This way it's possible to write some pages to files and some to strings and have the return value indicate what was created. The output designators in the returned list are ordered by creation time.Note that even if
pages
is specified,stream
acts as a catch all, taking the generated documentation for references not claimed by any pages. Also, the filename, string or stream corresponding tostream
is always the first element in the list of generated things, that is the return value.:header-fn
, if notnil
, is a function of a single stream argument, which is called just before the first write to the page. Since:format
:html
only generates HTML fragments, this makes it possible to print arbitrary headers, typically setting the title, css stylesheet, or charset.:footer-fn
is similar to:header-fn
, but it's called after the last write to the page. For HTML, it typically just closes the body.:uri-fragment
is a string such as"doc/manual.html"
that specifies where the page will be deployed on a webserver. It defines how links between pages will look. If it's not specified and:output
refers to a file, then it defaults to the name of the file. If:uri-fragment
isnil
, then no links will be made to or from that page.Finally,
:source-uri-fn
is a function of a single,reference
argument. If it returns a value other thannil
, then it must be a string representing an URI. Ifformat
is:html
and*document-mark-up-signatures*
is true, then the locative as displayed in the signature will be a link to this uri. Seemake-git-source-uri-fn
.pages
may look something like this:`((;; The section about SECTIONs and everything below it ... :objects (, @sections) ;; ... is so boring that it's not worth the disk space, so ;; send it to a string. :output (nil) ;; Explicitly tell other pages not to link to these guys. :uri-fragment nil) ;; Send the @EXTENSION-API section and everything reachable ;; from it ... (:objects (, @extension-api) ;; ... to build/tmp/pax-extension-api.html. :output ("build/tmp/pax-extension-api.html") ;; However, on the web server html files will be at this ;; location relative to some common root, so override the ;; default: :uri-fragment "doc/dev/pax-extension-api.html" ;; Set html page title, stylesheet, charset. :header-fn 'write-html-header ;; Just close the body. :footer-fn 'write-html-footer) ;; Catch the reference that were not reachable from the above. It ;; is important for this page spec to be last. (:objects (, @pax-manual) :output ("build/tmp/manual.html") ;; Links from the extension api page to the manual page will ;; be to ../user/pax-manual#<anchor>, while links going to ;; the opposite direction will be to ;; ../dev/pax-extension-api.html#<anchor>. :uri-fragment "doc/user/pax-manual.html" :header-fn 'write-html-header :footer-fn 'write-html-footer))
9.1 mgl-pax/document
ASDF System
- Description: Documentation generation support for
mgl-pax
. - Long Description: Autoloaded by
mgl-pax:document
. See Generating Documentation. - Licence: MIT, see COPYING.
- Author: Gábor Melis
- Mailto: mega@retes.hu
9.2 Markdown Support
The Markdown in docstrings is processed with the 3BMD library.
9.2.1 Indentation
Docstrings can be indented in any of the usual styles. PAX normalizes indentation by converting:
(defun foo ()
"This is
indented
differently")
to
(defun foo ()
"This is
indented
differently")
See document-object
for the details.
[method] document-object (string string) stream
Print
string
tostream
as a docstring. That is, clean up indentation, perform Codification, and linking (see Linking to Code, Linking to the Hyperspec).Docstrings in sources are indented in various ways, which can easily mess up markdown. To handle the most common cases leave the first line alone, but from the rest of the lines strip the longest run of leading spaces that is common to all non-blank lines.
9.2.2 Syntax Highlighting
For syntax highlighting, github's fenced code blocks markdown extension to mark up code blocks with triple backticks is enabled so all you need to do is write:
```elisp
(defun foo ())
```
to get syntactically marked up HTML output. Copy src/style.css
from PAX and you are set. The language tag, elisp
in this
example, is optional and defaults to common-lisp
.
See the documentation of 3BMD and colorize for the details.
9.2.3 MathJax
Displaying pretty mathematics in TeX format is supported via
MathJax. It can be done inline with $
like this:
$\int_0^\infty e^{-x^2} dx=\frac{\sqrt{\pi}}{2}$
which is diplayed as $\int_0^\infty e^{-x^2}
dx=\frac{\sqrt{\pi}}{2}$, or it can be delimited by $$
like this:
$$\int_0^\infty e^{-x^2} dx=\frac{\sqrt{\pi}}{2}$$
to get: $$\int_0^\infty e^{-x^2} dx=\frac{\sqrt{\pi}}{2}$$
MathJax will leave code blocks (including those inline with
backticks) alone. Outside code blocks, escape $
by prefixing it
with a backslash to scare MathJax off.
Escaping all those backslashes in TeX fragments embedded in Lisp strings can be a pain. Pythonic String Reader can help with that.
9.3 Codification
[variable] *document-uppercase-is-code* t
When true, codifiable and interesting words are assumed to be code as if they were marked up with backticks. For example, this docstring
"T PRINT CLASSes SECTION *PACKAGE* MGL-PAX ASDF CaMeL Capital"
is equivalent to this:
"`T` `PRINT` `CLASS`es `SECTION` `*PACKAGE*` `MGL-PAX` `ASDF` CaMel Capital"
and renders as
t
print
class
(0
1
)essection
(0
1
)mgl-pax
asdf
CaMel Capitalwhere the links are added due to
*document-link-code*
.To suppress this behavior, add a backslash to the beginning of the a codifiable word or right after the leading
*
if it would otherwise be parsed as markdown emphasis:"\\SECTION *\\PACKAGE*"
The number of backslashes is doubled above because that's how the example looks in a docstring. Note that the backslash is discarded even if
*document-uppercase-is-code*
is false.
-
A word is codifiable iff
-
A word is interesting iff it names
a known reference, or
a symbol external to its package, or
it is at least 3 characters long and names an interned symbol.
Where we say that a word names a known reference if the word matches the name of a thing being documented, or it is in the hyperspec and
*document-link-to-hyperspec*
is true. More precisely, a word names a known reference, if it matchesthe object of a reference being documented (see
document
andcollect-reachable-objects
), ora name in the hyperspec if
*document-link-to-hyperspec*
.
Symbols are read in the current
*package*
, which is subject to*document-normalize-packages*
.
[variable] *document-downcase-uppercase-code* nil
If true, then all Markdown inline code (that is,
stuff between backticks
, including those found if*document-uppercase-is-code*
) which has no lowercase characters is downcased in the output. Characters of literal strings in the code may be of any case. If this variable is:only-in-markup
and the output format does not support markup (e.g. it's:plain
), then no downcasing is performed. For example,`(PRINT "Hello")`
is downcased to
`(print "Hello")`
because it only contains uppercase characters outside the string. However,
`MiXed "RESULTS"`
is not altered because it has lowercase characters.
If the first two characters are backslashes, then no downcasing is performed, in addition to Preventing Autolinking. Use this to mark inline code that's not Lisp.
Press `\\M-.` in Emacs.
9.4 Linking to Code
In this section, we describe all ways of linking to code
available when *document-uppercase-is-code*
is true.
Note that invoking M-.
on the
object of any of the following links will disambiguate based the
textual context, determining the locative. In a nutshell, if M-.
works without popping up a list of choices, then the documentation
will contain a single link.
[variable] *document-link-code* t
Enable the various forms of links in docstrings described in Linking to Code. See the following sections for a description of how to use linking.
9.4.1 Specified Locative
The following examples all render as document
.
[DOCUMENT][function]
(object + locative, explicit link)DOCUMENT function
(object + locative, autolink)function DOCUMENT
(locative + object, autolink)
The Markdown link definition (i.e. function
between the second
set of brackets above) needs no backticks to mark it as code.
Here and below, the object (document
) is uppercased, and we rely
on *document-uppercase-is-code*
being true. Alternatively, the
object could be explicitly marked up as code with a pair of
backticks, and then its character case would likely not
matter (subject to readtable-case
).
The link text in the above examples is document
. To override it,
this form may be used:
[see this][document function]
(title + object + locative, explicit link) renders as: see this.
9.4.2 Unambiguous Unspecified Locative
In the following examples, although no locative is specified,
document
names a single object being documented, so they all
render as document
.
[document][]
(object, explicit link),document
(object, autolink).
To override the title:
[see this][document]
(title + object, explicit link) renders as: see this.
9.4.3 Ambiguous Unspecified Locative
These examples all render as section
(0
1
), linking to both
definitions of the object section
, the class
and the
locative
.
[section][]
(object, explicit link)section
(object, autolink)
To override the title:
9.4.4 Explicit and Autolinking
The examples in the previous sections are marked with explicit link or autolink. Explicit links are those with a Markdown reference link spelled out explicitly, while autolinks are those without.
9.4.5 Preventing Autolinking
In the common case, when *document-uppercase-is-code*
is true,
prefixing the uppercase word with a backslash prevents it from
being codified and thus also prevents autolinking form kicking in. For example,
\DOCUMENT
renders as DOCUMENT. If it should be marked up as code but not autolinked, the backslash must be within backticks like this:
`\DOCUMENT`
This renders as document
. Alternatively, the dislocated
or the
argument
locative may be used as in [DOCUMENT][dislocated]
.
9.4.6 Unresolvable Links
[condition] unresolvable-reflink warning
When
document
encounters an explicit link such as[NONEXISTENT][function]
that looks like a PAX construct but cannot be resolved, it signals andunresolvable-reflink
warning.If the
output-reflink
restart is invoked, then no warning is printed and the markdown link is left unchanged.muffle-warning
(0
1
) is equivalent tooutput-reflink
.If the
output-label
restart is invoked, then no warning is printed and the markdown link is replaced by its label. For example,[NONEXISTENT][function]
becomesnonexistent
.If the warning is not handled, then it is printed to
*error-output*
. Otherwise, it behaves asoutput-reflink
.
[function] output-reflink &optional condition
Invoke the
output-reflink
restart.
[function] output-label &optional condition
Invoke the OUTPUT-L restart.
9.4.7 Suppressed Links
Within the same docstring, autolinking of code (i.e. of something like
foo
) is suppressed if the same object was already linked to in
any way. In the following docstring, only the first foo
will be
turned into a link.
"`FOO` is safe. `FOO` is great."
However if a locative was specified or found near the object, then
a link is always made. In the following, in both docstrings, both
occurrences foo
produce links.
"`FOO` is safe. [`FOO`][macro] is great."
"`FOO` is safe. Macro `FOO` is great."
As an exception, links with specified
and unambiguous locatives to
section
(0
1
)s and glossary-term
(0
1
)s always produce a link to allow their
titles to be displayed properly.
Finally, autolinking to t
or
nil
is suppressed (see *document-link-to-hyperspec*
).
9.4.8 Filtering Ambiguous References
When there are multiple references to link to - as seen in Ambiguous Unspecified Locative - some references are removed by the following rules.
References to
asdf:system
s are removed if there are other references which are not toasdf:system
s. This is because system names often collide with the name of a class or function and are rarely useful to link to. Use explicit links toasdf:system
s, if necessary.References to the
clhs
are filtered similarly.If references include a
generic-function
locative, then all references withlocative-type
method
,accessor
,reader
andwriter
are removed to avoid linking to a possibly large number of methods.
9.4.9 Local References
To unclutter the generated output by reducing the number of
links, the so-called 'local' references (e.g. references to the very
definition for which documentation is being generated) are treated
specially. In the following example, there are local references to
the function foo
and its arguments, so none of them get turned into
links:
(defun foo (arg1 arg2)
"FOO takes two arguments: ARG1 and ARG2."
t)
If linking was desired, one could use a Specified Locative (e.g.
[FOO][function]
or FOO function
), which results in a single
link. An explicit link with an unspecified locative like [foo][]
generates links to all references involving the foo
symbol except
the local ones.
The exact rules for local references are as follows:
Unless a locative is specified, no autolinking is performed for objects for which there are local references. For example,
foo
does not get any links if there is any local reference with the same object.With a locative specified (e.g. in the explicit link
[FOO][function]
or in the textthe FOO function
), a single link is made irrespective of any local references.Explicit links with an unspecified locative (e.g.
[foo][]
) are linked to all non-local references.
9.5 Linking to the Hyperspec
[variable] *document-link-to-hyperspec* t
If true, link symbols found in code to the Common Lisp Hyperspec.
Locatives work as expected (see
*document-link-code*
):find-if
links tofind-if
,function
links tofunction
and[FUNCTION][type]
links tofunction
.Autolinking to
t
andnil
is suppressed. If desired, use[t][]
(that links tot
(0
1
)) or[T][constant]
(that links tot
).Note that linking to sections in the Hyperspec is done with the
clhs
locative and is not subject to the value of this variable.
[variable] *document-hyperspec-root* "http://www.lispworks.com/documentation/HyperSpec/"
A URL pointing to an installed Common Lisp Hyperspec. The default value of is the canonical location.
9.6 Linking to Sections
The following variables control how to generate section numbering, table of contents and navigation links.
[variable] *document-link-sections* t
When true, HTML anchors are generated before the headings (e.g. of sections), which allows the table of contents to contain links and also code-like references to sections (like
@foo-manual
) to be translated to links with the section title being the name of the link.
[variable] *document-max-numbering-level* 3
A non-negative integer. In their hierarchy, sections on levels less than this value get numbered in the format of
3.1.2
. Setting it to 0 turns numbering off.
[variable] *document-max-table-of-contents-level* 3
A non-negative integer. Top-level sections are given a table of contents, which includes a nested tree of section titles whose depth is limited by this value. Setting it to 0 turns generation of the table of contents off. If
*document-link-sections*
is true, then the table of contents will link to the sections.
[variable] *document-text-navigation* nil
If true, then before each heading a line is printed with links to the previous, parent and next section. Needs
*document-link-sections*
to be on to work.
[variable] *document-fancy-html-navigation* t
If true and the output format is HTML, then headings get a navigation component that consists of links to the previous, parent, next section and a permalink. This component is normally hidden, it is visible only when the mouse is over the heading. Needs
*document-link-sections*
to be on to work.
9.7 Miscellaneous Variables
[variable] *document-url-versions* (2 1)
A list of versions of PAX URL formats to support in the generated documenation. The first in the list is used to generate links.
PAX emits HTML anchors before the documentation of
section
(0
1
)s (see Linking to Sections) and other things (see Linking to Code). For the functionfoo
, in the current version (version 2), the anchor is<a id="MGL-PAX:FOO%20FUNCTION">
and its URL will end with#MGL-PAX:FOO%20FUNCTION
.Note that to make the URL independent of whether a symbol is internal or external to their
symbol-package
, single colon is printed where a double colon would be expected. Package and symbol names are both printed verbatim except for escaping colons and spaces with a backslash. For exported symbols with no funny characters, this coincides with howprin1
would print the symbol, while having the benefit of making the URL independent of the Lisp printer's escaping strategy and producing human-readable output for mixed-case symbols. No such promises are made for non-ASCII characters, and their URLs may change in future versions. Locatives are printed withprin1
.Version 1 is based on the more strict HTML4 standard and the id of
foo
is"x-28MGL-PAX-3A-3AFOO-20FUNCTION-29"
. This is supported by Github flavoured Markdown. Version 2 has minimal clutter and is obviously preferred. However, in order not to break external links, by default, both anchors are generated.Let's understand the generated Markdown.
(defun foo (x)) (document #'foo) => ("<a id=\"x-28MGL-PAX-3AFOO-20FUNCTION-29\"></a> <a id=\"MGL-PAX:FOO%20FUNCTION\"></a> - [function] **FOO** *X* ") (let ((*document-url-versions* '(1))) (document #'foo)) => ("<a id=\"x-28MGL-PAX-3AFOO-20FUNCTION-29\"></a> - [function] **FOO** *X* ")
[variable] *document-min-link-hash-length* 4
Recall that markdown reference style links (like
[label][id]
) are used for linking to sections and code. It is desirable to have ids that are short to maintain legibility of the generated markdown, but also stable to reduce the spurious diffs in the generated documentation, which can be a pain in a version control system.Clearly, there is a tradeoff here. This variable controls how many characters of the md5 sum of the full link id (the reference as a string) are retained. If collisions are found due to the low number of characters, then the length of the hash of the colliding reference is increased.
This variable has no effect on the HTML generated from markdown, but it can make markdown output more readable.
[variable] *document-mark-up-signatures* t
When true, some things such as function names and arglists are rendered as bold and italic. In
:html
output, locative types become links to sources (if:source-uri-fn
is provided, seedocument
), and the symbol becomes a self-link for your permalinking pleasure.For example, a reference is rendered in markdown roughly as:
- [function] foo x y
With this option on, the above becomes:
- [function] **foo** *x y*
Also, in HTML
**foo**
will be a link to that very entry and[function]
may turn into a link to sources.
[variable] *document-normalize-packages* t
Determines what
*package*
and*readtable*
are when working with generating documentation. If true and documentation is generated for asection
(0
1
) (including itssection-entries
), thensection-package
andsection-readtable
of the innermost containing section is used. To eliminate ambiguity[in package ...]
messages are printed right after the section heading if necessary. If false, then*package*
and*readtable*
are left at the current values.
9.8 Utilities for Generating Documentation
Two convenience functions are provided to serve the common case of having an ASDF system with some readmes and a directory with for the HTML documentation and the default css stylesheet.
[function] update-asdf-system-readmes object asdf-system &key (url-versions '(1))
Convenience function to generate two readme files in the directory holding the
asdf-system
definition.object
is passed on todocument
.README.md
has anchors, links, inline code, and other markup added. Not necessarily the easiest on the eye in an editor, but looks good on github.readme
is optimized for reading in text format. Has no links and less cluttery markup.Example usage:
(update-asdf-system-readmes @pax-manual :mgl-pax)
Note that
*document-url-versions*
is bound tourl-versions
, that defaults to using the uglier version 1 style ofurl
for the sake of github.
[function] update-asdf-system-html-docs sections asdf-system &key pages (target-dir (asdf/system:system-relative-pathname asdf-system "doc/")) (update-css-p t)
Generate pretty HTML documentation for a single ASDF system, possibly linking to github. If
update-css-p
, copy the CSS style sheet totarget-dir
, as well. Example usage:(update-asdf-system-html-docs @pax-manual :mgl-pax)
The same, linking to the sources on github:
(update-asdf-system-html-docs @pax-manual :mgl-pax :pages `((:objects (,mgl-pax::@pax-manual) :source-uri-fn ,(make-git-source-uri-fn :mgl-pax "https://github.com/melisgl/mgl-pax"))))
[variable] *document-html-max-navigation-table-of-contents-level* nil
nil
or a non-negative integer. If non-NIL, it overrides*document-max-numbering-level*
in dynamic HTML table of contents on the left of the page.
- of the generated html.
[variable] *document-html-top-blocks-of-links* nil
A list of blocks of links to be displayed on the sidebar on the left, above the table of contents. A block is of the form
(&key title id links)
, wheretitle
will be displayed at the top of the block in a HTMLdiv
withid
, followed by the links.links
is a list of(URI LABEL) elements.
[variable] *document-html-bottom-blocks-of-links* nil
Like
*document-html-top-blocks-of-links*
, only it is displayed below the table of contents.
9.8.1 Github Workflow
It is generally recommended to commit generated readmes (see
update-asdf-system-readmes
), so that users have something to read
without reading the code and sites like github can display them.
HTML documentation can also be committed, but there is an issue with
that: when linking to the sources (see make-git-source-uri-fn
), the
commit id is in the link. This means that code changes need to be
committed first, and only then can HTML documentation be regenerated
and committed in a followup commit.
The second issue is that github is not very good at serving HTMLs files from the repository itself (and http://htmlpreview.github.io chokes on links to the sources).
The recommended workflow is to use
gh-pages, which can be made relatively
painless with the git worktree
command. The gist of it is to make
the doc/
directory a checkout of the branch named gh-pages
. A
good description of this process is
http://sangsoonam.github.io/2019/02/08/using-git-worktree-to-deploy-github-pages.html.
Two commits needed still, but it is somewhat less painful.
This way the HTML documentation will be available at
http://<username>.github.io/<repo-name>
. It is probably a good
idea to add sections like the Links section to allow jumping
between the repository and the gh-pages site.
[function] make-github-source-uri-fn asdf-system github-uri &key git-version
This function is a backward-compatibility wrapper around
make-git-source-uri-fn
, which supersedesmake-github-source-uri-fn
. All arguments are passed on tomake-git-source-uri-fn
, leavinguri-format-string
at its default, which is suitable for github.
[function] make-git-source-uri-fn asdf-system git-forge-uri &key git-version (uri-format-string "~A/blob/~A/~A#L~S")
Return a function suitable as
:source-uri-fn
of a page spec (see thepages
argument ofdocument
). The function looks at the source location of thereference
passed to it, and if the location is found, the path is made relative to the root directory ofasdf-system
and finally an URI pointing to your git forge (such as github) is returned. A warning is signalled whenever the source location lookup fails or if the source location points to a directory not below the directory ofasdf-system
.If GIT-FORE-URI is
"https://github.com/melisgl/mgl-pax/"
andgit-version
is"master"
, then the returned URI may look like this:https://github.com/melisgl/mgl-pax/blob/master/src/pax-early.lisp#L12
If
git-version
isnil
, then an attempt is made to determine to current commit id from the.git
in the directory holdingasdf-system
. If no.git
directory is found, then no links to the git forge will be generated.uri-format-string
is acl:format
control string for four arguments:git-forge-uri
,git-version
,the relative path to the file of the source location of the reference,
and the line number.
The default value of
uri-format-string
is for github. If using a non-standard git forge, such as Sourcehut or Gitlab, simply pass a suitableuri-format-string
matching the URI scheme of your forge.
9.8.2 PAX World
PAX World is a registry of documents, which can generate cross-linked HTML documentation pages for all the registered documents.
[function] register-doc-in-pax-world name sections page-specs
Register
sections
andpage-specs
undername
in PAX World. By default,update-pax-world
generates documentation for all of these.
For example, this is how PAX registers itself:
(defun pax-sections ()
(list @pax-manual))
(defun pax-pages ()
`((:objects
(, @pax-manual)
:source-uri-fn ,(make-git-source-uri-fn
:mgl-pax
"https://github.com/melisgl/mgl-pax"))))
(register-doc-in-pax-world :pax (pax-sections) (pax-pages))
[function] update-pax-world &key (docs *registered-pax-world-docs*) dir
Generate HTML documentation for all
docs
. Files are created indir
((asdf:system-relative-pathname :mgl-pax "world/")
by default ifdir
isnil
).docs
is a list of entries of the form (name
sections
(0
1
)page-specs
). The default fordocs
is all the sections and pages registered withregister-doc-in-pax-world
.In the absence of
:header-fn
:footer-fn
,:output
, every spec inpage-specs
is augmented with HTML headers, footers and output location specifications (based on the name of the section).If necessary a default page spec is created for every section.
9.9 Overview of Escaping
Let's recap how escaping Codification, downcasing, and Linking to Code works.
One backslash in front of a word turns codification off. Use this to prevent codification words such as PAX, which is all uppercase hence codifiable and it names a package hence it is interesting.
One backslash right after an opening backtick turns autolinking off.
Two backslashes right after an opening backtick turns autolinking and downcasing off. Use this for things that are not Lisp code but which need to be in a monospace font.
In the following examples capital C/D/A letters mark the presence,
and a/b/c the absence of codification, downcasing, and autolinking
assuming all these features are enabled by
*document-uppercase-is-code*
. *document-downcase-uppercase-code*
,
and *document-link-code*
.
DOCUMENT => [`document`][1234] (CDA)
\DOCUMENT => DOCUMENT (cda)
`\DOCUMENT` => `document` (CDa)
`\\DOCUMENT` => `DOCUMENT` (CdA)
[DOCUMENT][] => [`document`][1234] (CDA)
[\DOCUMENT][] => [DOCUMENT][1234] (cdA)
[`\DOCUMENT`][] => [`document`][1234] (CDA) *
[`\\DOCUMENT`][] => [`DOCUMENT`][1234] (CdA)
[DOCUMENT][dislocated] => `document` (CDa)
Note that in the example marked with *
, the single backslash,
that would normally turn autolinking off, is ignored because it is
in an explicit link.
9.10 Document Generation Implementation Notes
Documentation Generation is supported on ABCL, AllegroCL, CLISP, CCL, CMUCL, ECL and SBCL, but their outputs may differ due to the lack of some introspective capability. SBCL generates complete output. Compared to that, the following are not supported:
compiler-macro
docstrings on ABCL, AllegroCL, CCL, ECL,deftype
lambda lists on ABCL, AllegroCL, CLISP, CCL, CMUCL, ECL,default values in
macro
lambda lists on AllegroCL,
10 Transcripts
What are transcripts for? When writing a tutorial, one often wants to include a REPL session with maybe a few defuns and a couple of forms whose output or return values are shown. Also, in a function's docstring an example call with concrete arguments and return values speaks volumes. A transcript is a text that looks like a repl session, but which has a light markup for printed output and return values, while no markup (i.e. prompt) for Lisp forms. PAX transcripts may include output and return values of all forms, or only selected ones. In either case, the transcript itself can be easily generated from the source code.
The main worry associated with including examples in the
documentation is that they tend to get out-of-sync with the code.
This is solved by being able to parse back and update transcripts.
In fact, this is exactly what happens during documentation
generation with PAX. Code sections tagged cl-transcript
are
retranscribed and checked for inconsistency (that is, any difference
in output or return values). If the consistency check fails, an
error is signalled that includes a reference to the object being
documented.
Going beyond documentation, transcript consistency checks can be used for writing simple tests in a very readable form. For example:
(+ 1 2)
=> 3
(values (princ :hello) (list 1 2))
.. HELLO
=> :HELLO
=> (1 2)
All in all, transcripts are a handy tool especially when combined with the Emacs support to regenerate them and with PYTHONIC-STRING-READER's triple-quoted strings, that allow one to work with nested strings with less noise. The triple-quote syntax can be enabled with:
(in-readtable pythonic-string-syntax)
10.1 mgl-pax/transcribe
ASDF System
- Description: Transcription support for
mgl-pax
. - Long Description: Autoloaded by
mgl-pax:transcribe
and by the Emacs integration (see Transcripts). - Licence: MIT, see COPYING.
- Author: Gábor Melis
- Mailto: mega@retes.hu
10.2 Transcribing with Emacs
Typical transcript usage from within Emacs is simple: add a lisp
form to a docstring or comment at any indentation level. Move the
cursor right after the end of the form as if you were to evaluate it
with C-x C-e
. The cursor is marked by #\^
:
This is part of a docstring.
```cl-transcript
(values (princ :hello) (list 1 2))^
```
Note that the use of fenced code blocks with the language tag
cl-transcript
is only to tell PAX to perform consistency checks
at documentation generation time.
Now invoke the elisp function mgl-pax-transcribe
where the cursor
is and the fenced code block from the docstring becomes:
(values (princ :hello) (list 1 2))
.. HELLO
=> :HELLO
=> (1 2)
^
Then you change the printed message and add a comment to the second return value:
(values (princ :hello-world) (list 1 2))
.. HELLO
=> :HELLO
=> (1
;; This value is arbitrary.
2)
When generating the documentation you get a
transcription-consistency-error
because the printed output and the
first return value changed so you regenerate the documentation by
marking the region of bounded by #\|
and the cursor at #\^
in
the example:
|(values (princ :hello-world) (list 1 2))
.. HELLO
=> :HELLO
=> (1
;; This value is arbitrary.
2)
^
then invoke the elisp function mgl-pax-retranscribe-region
to get:
(values (princ :hello-world) (list 1 2))
.. HELLO-WORLD
=> :HELLO-WORLD
=> (1
;; This value is arbitrary.
2)
^
Note how the indentation and the comment of (1 2)
was left alone
but the output and the first return value got updated.
Alternatively, C-u 1 mgl-pax-transcribe
will emit commented markup:
(values (princ :hello) (list 1 2))
;.. HELLO
;=> :HELLO
;=> (1 2)
C-u 0 mgl-pax-retranscribe-region
will turn commented into
non-commented markup. In general, the numeric prefix argument is the
index of the syntax to be used in mgl-pax
:*transcribe-syntaxes*
.
Without a prefix argument mgl-pax-retranscribe-region
will not
change the markup style.
Finally, not only do both functions work at any indentation level, but in comments too:
;;;; (values (princ :hello) (list 1 2))
;;;; .. HELLO
;;;; => :HELLO
;;;; => (1 2)
Transcription support in emacs can be enabled by loading
src/transcribe.el
.
10.3 Transcript API
[function] transcribe input output &key update-only (include-no-output update-only) (include-no-value update-only) (echo t) (check-consistency *transcribe-check-consistency*) default-syntax (input-syntaxes *transcribe-syntaxes*) (output-syntaxes *transcribe-syntaxes*)
Read forms from
input
and write them (iffecho
) tooutput
followed by any output and return values produced by callingeval
on the form.input
can be a stream or a string, whileoutput
can be a stream ornil
in which case transcription goes into a string. The return value is theoutput
stream or the string that was constructed.A simple example is this:
(transcribe "(princ 42) " nil) => "(princ 42) .. 42 => 42 "
However, the above may be a bit confusing since this documentation uses
transcribe
markup syntax in this very example, so let's do it differently. If we have a file with these contents:(values (princ 42) (list 1 2))
it is transcribed to:
(values (princ 42) (list 1 2)) .. 42 => 42 => (1 2)
Output to all standard streams is captured and printed with the
:output
prefix (".."
). The return values above are printed with the:readable
prefix ("=>"
). Note how these prefixes are always printed on a new line to facilitate parsing.Updating
transcribe
is able to parse its own output. If we transcribe the previous output above, we get it back exactly. However, if we remove all output markers, leave only a placeholder value marker and pass:update-only
t
with source:(values (princ 42) (list 1 2)) =>
we get this:
(values (princ 42) (list 1 2)) => 42 => (1 2)
With
update-only
, the printed output of a form is only transcribed if there were output markers in the source. Similarly, withupdate-only
, return values are only transcribed if there were value markers in the source.No Output/Values
If the form produces no output or returns no values, then whether or not output and values are transcribed is controlled by
include-no-output
andinclude-no-value
, respectively. By default, neither is on so:(values) .. =>
is transcribed to
(values)
With
update-only
true, we probably wouldn't like to lose those markers since they were put there for a reason. Hence, withupdate-only
,include-no-output
andinclude-no-value
default to true. So withupdate-only
the above example is transcribed to:(values) .. => ; No value
where the last line is the
:no-value
prefix.Consistency Checks
If
check-consistency
is true, thentranscribe
signals a continuabletranscription-output-consistency-error
whenever a form's output as a string is different from what was ininput
, provided thatinput
contained the output. Similary, for values, a continuabletranscription-values-consistency-error
is signalled if a value read from the source does not print as the as the value returned byeval
. This allows readable values to be hand-indented without failing consistency checks:(list 1 2) => ;; This is commented, too. (1 ;; Funny indent. 2)
See Transcript Consistency Checking for the full picture.
Unreadable Values
The above scheme involves
read
, so consistency of unreadable values cannot be treated the same. In fact, unreadable values must even be printed differently for transcribe to be able to read them back:(defclass some-class () ()) (defmethod print-object ((obj some-class) stream) (print-unreadable-object (obj stream :type t) (format stream \"~%~%end\"))) (make-instance 'some-class) ==> #<SOME-CLASS --> --> end>
where
"==>"
is the:unreadable
prefix and"-->"
is the:unreadable-continuation
prefix. As with outputs, a consistency check between an unreadable value from the source and the value fromeval
is performed withstring=
by default. That is, the value fromeval
is printed to a string and compared to the source value. Hence, any change to unreadable values will break consistency checks. This is most troublesome with instances of classes with the defaultprint-object
method printing the memory address. See @ no remedy for that, except for customizingprint-object
or not transcribing that kind of stuff.Errors
If an
error
condition is signalled, the error is printed to the output and no values are returned.(progn (print "hello") (error "no greeting")) .. .. "hello" .. debugger invoked on SIMPLE-ERROR: .. no greeting
To keep the textual representation somewhat likely to be portable, the printing is done with
(format t "#<~S ~S>" (type-of error) (princ-to-string error))
.simple-condition
s are formatted to strings withsimple-condition-format-control
andsimple-condition-format-arguments
.Syntaxes
Finally, a transcript may employ different syntaxes for the output and values of different forms. When
input
is read, the syntax for each form is determined by trying to match all prefixes from all syntaxes ininput-syntaxes
against a line. If there are no output or values for a form ininput
, then the syntax remains undetermined.When
output
is written, the prefixes to be used are looked up indefault-syntax
ofoutput-syntaxes
, ifdefault-syntax
is notnil
. Ifdefault-syntax
isnil
, then the syntax used by the same form in theinput
is used or (if that could not be determined) the syntax of the previous form. If there was no previous form, then the first syntax ifoutput-syntaxes
is used.To produce a transcript that's executable Lisp code, use
:default-syntax
:commented-1:
(make-instance 'some-class) ;==> #<SOME-CLASS ;--> ;--> end> (list 1 2) ;=> (1 ;-> 2)
To translate the above to uncommented syntax, use
:default-syntax
:default
. Ifdefault-syntax
isnil
(the default), the same syntax will be used in the output as in the input as much as possible.
[variable] *transcribe-check-consistency* nil
The default value of
transcribe
'scheck-consistency
argument.
[variable] *transcribe-syntaxes* ((:default (:output "..") (:no-value "=> ; No value") (:readable "=>") (:unreadable "==>") (:unreadable-continuation "-->")) (:commented-1 (:output ";..") (:no-value ";=> ; No value") (:readable ";=>") (:readable-continuation ";->") (:unreadable ";==>") (:unreadable-continuation ";-->")) (:commented-2 (:output ";;..") (:no-value ";;=> ; No value") (:readable ";;=>") (:readable-continuation ";;->") (:unreadable ";;==>") (:unreadable-continuation ";;-->")))
The default syntaxes used by
transcribe
for reading and writing lines containing output and values of an evaluated form.A syntax is a list of of the form
(syntax-id &rest prefixes)
whereprefixes
is a list of(prefix-id prefix-string)
elements. For example the syntax:commented-1
looks like this:(:commented-1 (:output ";..") (:no-value ";=> No value") (:readable ";=>") (:readable-continuation ";->") (:unreadable ";==>") (:unreadable-continuation ";-->"))
All of the above prefixes must be defined for every syntax except for
:readable-continuation
. If that's missing (as in the:default
syntax), then the following value is read withread
and printed withprin1
(hence no need to mark up the following lines).When writing, an extra space is added automatically if the line to be prefixed is not empty. Similarly, the first space following the prefix is discarded when reading.
See
transcribe
for how the actual syntax to be used is selected.
[condition] transcription-error error
Represents syntactic errors in the
source
argument oftranscribe
and also serves as the superclass oftranscription-consistency-error
.
[condition] transcription-consistency-error transcription-error
A common superclass for
transcription-output-consistency-error
andtranscription-values-consistency-error
.
[condition] transcription-output-consistency-error transcription-consistency-error
Signaled (with
cerror
) bytranscribe
when invoked with:check-consistency
and the output of a form is not the same as what was parsed.
[condition] transcription-values-consistency-error transcription-consistency-error
Signaled (with
cerror
) bytranscribe
when invoked with:check-consistency
and the values of a form are inconsistent with their parsed representation.
10.4 Transcript Consistency Checking
The main use case for consistency checking is detecting out-of-date examples in documentation, although using it for writing tests is also a possiblity. Here, we focus on the former.
When a markdown code block tagged cl-transcript
is processed
during Generating Documentation, the code in it is replaced with
the output of with (transcribe <code> nil :update-only t
:check-consistency t)
. Suppose we have the following example of the
function greet
, that prints hello
and returns 7.
```cl-transcript
(greet)
.. hello
=> 7
```
Now, if we change greet
to print or return something else, a
transcription-consistency-error
will be signalled during
documentation generation. Then we may fix the documentation or
continue
from the error.
By default, comparisons of previous to current ouput, readable and
unreadable return values are performed with string=
, equal
, and
string=
, respectively, which is great in the simple case.
Non-determinism aside, exact matching becomes brittle as soon as the
notoriously unportable pretty printer is used or when unreadable
objects are printed with their #<>
syntax, especially when
print-unreadable-object
is used with :identity t
.
10.4.1 Finer-grained Consistency Checks
To get around this problem, consistency checking of output,
readable and unreadable values can be customized individually by
supplying transcribe
with a check-consistency
argument
like ((:output <output-check>) (:readable
<readable-check>) (:unreadable <unreadable-check>))
. In this case,
<output-check>
may be nil
, t
, or a function designator.
If it's
nil
or there is no:output
entry in the list, then the output is not checked for consistency.If it's
t
, then the outputs are compared with the default,string=
.If it's a function designator, then it's called with two strings and must return whether they are consistent with each other.
The case of <readable-check>
and <unreadable-check>
is similar.
Code blocks tagged cl-transcript
can take arguments, which they
pass on to transcribe
. The following shows how to check only the
output.
```cl-transcript (:check-consistency ((:output t)))
(error "Oh, no.")
.. debugger invoked on SIMPLE-ERROR:
.. Oh, no.
(make-condition 'simple-error)
==> #<SIMPLE-ERROR {1008A81533}>
10.4.2 Controlling the Dynamic Environment
The dynamic enviroment in which forms in the transcript are
evaluated can be controlled via the :dynenv
argument of
cl-transcript
.
```cl-transcript (:dynenv my-transcript)
...
```
In this case, instead of calling transcribe
directly, the call will
be wrapped in a function of no arguments and passed to the function
my-transcript
, which establishes the desired dynamic environment
and calls its argument. The following definition of my-transcript
simply packages up oft-used settings to transcribe
.
(defun my-transcript (fn)
(let ((*transcribe-check-consistency*
'((:output my-transcript-output=)
(:readable equal)
(:unreadable nil))))
(funcall fn)))
(defun my-transcript-output= (string1 string2)
(string= (my-transcript-normalize-output string1)
(my-transcript-normalize-output string2)))
(defun my-transcript-normalize-output (string)
(squeeze-whitespace (delete-trailing-whitespace (delete-comments string))))
A more involved solution could rebind global variables set in transcripts, unintern symbols created or even create a temporary package for evaluation.
10.4.3 Utilities for Consistency Checking
[function] squeeze-whitespace string
Replace consecutive whitespace characters with a single space in
string
. This is useful to do undo the effects of pretty printing when building comparison functions fortranscribe
.
[function] delete-trailing-whitespace string
Delete whitespace characters after the last non-whitespace character in each line in
string
.
[function] delete-comments string &key (pattern ";")
For each line in
string
delete the rest of the line after and including the first occurrence ofpattern
. On changed lines, delete trailing whitespace too. Let's define a comparison function:(defun string=/no-comments (string1 string2) (string= (delete-comments string1) (delete-comments string2)))
And use it to check consistency of output:
```cl-transcript (:check-consistency ((:output string=/no-comments))) (format t "hello~%world") .. hello ; This is the first line. .. world ; This is the second line. ```
Just to make sure the above example works, here it is without the being quoted.
(format t "hello~%world") .. hello ; This is the first line. .. world ; This is the second line.
11 Writing Extensions
11.1 Adding New Object Types
One may wish to make the document
function and M-.
navigation
work with new object types. document
can be extended by defining a
document-object
method specialized on that type. To allow these
objects to be referenced from defsection
, locate-object
method is to
be defined. If there are multiple equivalent references possible for
the same thing, then canonical-reference
must be specialized. For
the docstring
locative to work on the new type, a docstring
method
is needed. For M-.
find-source
can be specialized. Finally,
exportable-locative-type-p
may be overridden if exporting does not
makes sense. Here is how all this is done for asdf:system:
(define-locative-type asdf:system ()
"Refers to an asdf system. The generated documentation will include
meta information extracted from the system definition. This also
serves as an example of a symbol that's not accessible in the
current package and consequently is not exported.
ASDF:SYSTEM is not EXPORTABLE-LOCATIVE-TYPE-P.")
(defmethod locate-object (name (locative-type (eql 'asdf:system))
locative-args)
(or (and (endp locative-args)
;; ASDF:FIND-SYSTEM is slow as hell.
(asdf:find-system (string-downcase (string name)) nil))
(locate-error "~S does not name an asdf system." name)))
(defmethod canonical-reference ((system asdf:system))
(make-reference (character-string (slot-value system 'asdf::name))
'asdf:system))
;;; For testing
(defvar *omit-asdf-slots* nil)
(defmethod document-object ((system asdf:system) stream)
(with-heading (stream system
(format nil "~A \\ASDF System"
(string-upcase
(slot-value system 'asdf::name))))
(flet ((foo (name fn &key type)
(let ((value (funcall fn system)))
(when (and value (not (equal value "")))
(case type
((:link)
(format stream "- ~A: [~A](~A)~%" name value value))
((:mailto)
(format stream "- ~A: [~A](mailto:~A)~%"
name value value))
((:source-control)
(format stream "- ~A: [~A](~A)"
name (first value) (second value)))
((:docstring)
(format stream "- ~A: " name)
(document-docstring value stream
:indentation " "
:exclude-first-line-p t
:paragraphp nil)
(terpri stream))
((nil)
(format stream "- ~A: ~A~%" name value)))))))
(unless *omit-asdf-slots*
(foo "Version" 'asdf/component:component-version)
(foo "Description" 'asdf/system:system-description :type :docstring)
(foo "Long Description" 'asdf/system:system-long-description
:type :docstring)
(foo "Licence" 'asdf/system:system-licence)
(foo "Author" 'asdf/system:system-author)
(foo "Maintainer" 'asdf/system:system-maintainer)
(foo "Mailto" 'asdf/system:system-mailto :type :mailto)
(foo "Homepage" 'asdf/system:system-homepage :type :link)
(foo "Bug tracker" 'asdf/system:system-bug-tracker :type :link)
(foo "Source control" 'asdf/system:system-source-control
:type :source-control)
(terpri stream)))))
(defmethod docstring ((system asdf:system))
nil)
(defmethod find-source ((system asdf:system))
`(:location
(:file ,(namestring (asdf/system:system-source-file system)))
(:position 1)
(:snippet "")))
(add-locative-to-source-search-list 'asdf:system)
[macro] define-locative-type locative-type lambda-list &body docstring
Declare
locative-type
as alocative
. One gets two things in return: first, a place to document the format and semantics oflocative-type
(inlambda-list
anddocstring
); second, being able to reference(locative-type locative)
. For example, if you have:(define-locative-type variable (&optional initform) "Dummy docstring.")
then
(variable locative)
refers to this form.
[macro] define-locative-alias alias locative-type
Define
alias
as a locative equivalent tolocative-type
(bothsymbol
s). The following example shows how to make docstrings read more naturally by defining an alias.(defclass my-string () ()) (defgeneric my-string (obj) (:documentation "Convert OBJ to MY-STRING.")) ;;; This version of FOO has a harder to read docstring because ;;; it needs to disambiguate the MY-STRING reference. (defun foo (x) "FOO takes and argument X, a [MY-STRING][class] object.") ;;; Define OBJECT as an alias for the CLASS locative. (define-locative-alias object class) ;;; Note how no explicit link is needed anymore. (defun foo (x) "FOO takes an argument X, a MY-CLASS object.")
[generic-function] locate-object object locative-type locative-args
Return the object to which
object
and the locative refer. Signal alocate-error
condition by calling thelocate-error
function if the lookup fails. If areference
is returned, then it must be canonical in the sense that callingcanonical-reference
on it will return the same reference. Don't call this function directly. It serves only to extendlocate
.
[function] locate-error &rest format-and-args
Call this function to signal a
locate-error
condition from alocate-object
method.format-and-args
contains a format string and args suitable forformat
from which thelocate-error-message
is constructed. Ifformat-and-args
isnil
, then the message will benil
too.locate-error-object
andlocate-error-locative
are populated automatically.
[generic-function] canonical-reference object
Return a
reference
thatresolve
s toobject
, or returnnil
if this operation is not defined forobject
. Its reference delegate islocate-canonical-reference
.
[generic-function] collect-reachable-objects object
Return a list of objects representing all things to be documented in a
(document object)
call. For asection
(0
1
) this is simply the union of references reachable from references in itssection-entries
. The returned objects can be anything provided thatcanonical-reference
works on them. The list need not includeobject
itself.One only has to specialize this for new container-like objects. Its reference delegate is
locate-and-collect-reachable-objects
.
[generic-function] document-object object stream
Write
object
(and its references recursively) in*format*
tostream
in markdown format. Add methods specializing onobject
to customize the output ofdocument
. Its reference delegate islocate-and-document
. This function is for extension, don't call it directly.
[generic-function] docstring object
Return the docstring from the definition of
object
with leading indentation stripped. This function serves a similar purpose ascl:documentation
, but it works with first-class objects when there is one for the corresponding definition, and withreference
s when there is not. Its reference delegate islocate-docstring
.docstring
is used in the implementation of thedocstring
locative. Some things such asasdf:system
s anddeclaration
(0
1
)s have no docstrings. Notablysection
(0
1
)s don't provide access to docstrings.
[generic-function] find-source object
Return the Swank source location for
object
. It is called bylocate-definitions-for-emacs
, which lies behind theM-.
extension (see Navigating Sources in Emacs). Its reference delegate islocate-and-find-source
.If successful, the return value should look like one of these:
(:LOCATION (:FILE "/home/melisgl/own/mgl-pax/src/pax.lisp") (:POSITION 3303) NIL) (:LOCATION (:FILE "/home/melisgl/own/mgl-pax/src/pax.lisp") (:OFFSET 1 3303) NIL) (:LOCATION (:FILE "/home/melisgl/own/mgl-pax/src/pax.lisp") (:FUNCTION-NAME "FOO") NIL)
The
nil
above is the source snippet, which is optional. Note that position 1 is the first character in:file
. If unsuccessful, the return value is like:(:error "Unknown source location for SOMETHING")
[generic-function] exportable-reference-p package symbol locative-type locative-args
Return true iff
symbol
is to be exported frompackage
when it occurs in adefsection
as a reference withlocative-type
andlocative-args
.symbol
is accessible inpackage
.The default method calls
exportable-locative-type-p
withlocative-type
and ignores the other arguments.For example, to prevent
section
(0
1
)s from being export from themgl-pax
package, the following method is defined.(defmethod exportable-reference-p ((package (eql (find-package 'mgl-pax))) symbol (locative-type (eql 'section)) locative-args) nil)
[generic-function] exportable-locative-type-p locative-type
Return true iff symbols in references with
locative-type
are to be exported by default when they occur in adefsection
. The default method returnst
, while the methods forsection
(0
1
),glossary-term
(0
1
),package
(0
1
),asdf:system
,method
(0
1
) andinclude
returnnil
.This function is called by the default method of
exportable-reference-p
to decide what symbolsdefsection
shall export when itsexport
argument is true.
11.2 Reference Based Extensions
Let's see how to extend document
and M-.
navigation if there
is no first-class object to represent the definition of interest.
Recall that locate
returns a reference
object in this case. The
generic functions that we have specialized in Adding New Object Types have
reference delegates, which can be specialized based on
locative-type
. Here is how the variable
locative is defined:
(define-locative-type variable (&optional initform)
"""Refers to a global special variable. INITFORM, or if not specified,
the global value of the variable is included in the documentation.
```
;;; A REFERENCE is returned because there is no such type as VARIABLE.
(locate '*FORMAT* 'variable)
==> #<REFERENCE *FORMAT* VARIABLE>
```
For the output of `(DOCUMENT (MAKE-REFERENCE '*FORMAT* 'VARIABLE))`,
see *FORMAT*. Note that *FORMAT* is unbound. If the variable is
BOUNDP, then its _current_ value is included in the documentation.
See *DOCUMENT-LINK-CODE* for an example output. To override the
current value, `INITFORM` may be provided. This is particulary
useful if the value of the variable is something undesirable such as
`\\#<MY-CLASS {100171ED93}>`.""")
(defmethod locate-object (symbol (locative-type (eql 'variable)) locative-args)
(unless (<= (length locative-args) 1)
(locate-error "The lambda list of the VARIABLE locative is ~
(&OPTIONAL INITFORM)."))
(make-reference symbol (cons locative-type locative-args)))
(defmethod locate-and-document (symbol (locative-type (eql 'variable))
locative-args stream)
(destructuring-bind (&optional (initform nil initformp)) locative-args
(let ((arglist (multiple-value-bind (value unboundp)
(symbol-global-value symbol)
(when (or initformp (not unboundp))
(let ((*print-pretty* t))
(prin1-to-markdown (if initformp
initform
value)))))))
(documenting-reference (stream :arglist arglist)
(document-docstring (documentation* symbol 'variable) stream)))))
(defmethod locate-docstring (symbol (locative-type (eql 'variable))
locative-args)
(declare (ignore locative-args))
(documentation* symbol 'variable))
(defmethod locate-and-find-source (symbol (locative-type (eql 'variable))
locative-args)
(declare (ignore locative-args))
(find-definition symbol 'variable))
[glossary-term] reference delegate
canonical-reference
,collect-reachable-objects
,document-object
,docstring
, andfind-source
delegate dealing withreferences
to another generic function, one each, which is called their reference delegate. Each of these delegator functions invokes its delegate when areference
is passed to it (as itsobject
argument), or there is no method specialized for its arguments, in which case it uses thecanonical-reference
.The net effect is that is that it is sufficient to specialize either the delegator for a first-class object or the delegate for a new locative type.
[generic-function] locate-canonical-reference object locative-type locative-args
This is the reference delegate of
canonical-reference
. The default method callslocate-object
with the three arguments. Iflocate-object
returns areference
, then that's taken to be the canonical reference and is returned, elsecanonical-reference
is invoked with the returned object.
[generic-function] locate-and-collect-reachable-objects object locative-type locative-args
This is the reference delegate of
collect-reachable-objects
.
[generic-function] locate-and-document object locative-type locative-args stream
This is the reference delegate of
document
.
[generic-function] locate-docstring object locative-type locative-args
This is the reference delegate of
docstring
.
[generic-function] locate-and-find-source object locative-type locative-args
This is the reference delegate of
find-source
.
We have covered the basic building blocks of reference based
extensions. Now let's see how the obscure
define-symbol-locative-type
and
define-definer-for-symbol-locative-type
macros work together to
simplify the common task of associating definition and documentation
with symbols in a certain context.
[macro] define-symbol-locative-type locative-type lambda-list &body docstring
Similar to
define-locative-type
but it assumes that all things locatable withlocative-type
are going to be just symbols defined with a definer defined withdefine-definer-for-symbol-locative-type
. It is useful to attach documentation and source location to symbols in a particular context. An example will make everything clear:(define-symbol-locative-type direction () "A direction is a symbol. (After this `M-.` on `DIRECTION LOCATIVE` works and it can also be included in DEFSECTION forms.)") (define-definer-for-symbol-locative-type define-direction direction "With DEFINE-DIRECTION one can document what a symbol means when interpreted as a direction.") (define-direction up () "UP is equivalent to a coordinate delta of (0, -1).")
After all this,
(up direction)
refers to thedefine-direction
form above.
[macro] define-definer-for-symbol-locative-type name locative-type &body docstring
Define a macro with
name
which can be used to attach documentation, a lambda-list and source location to a symbol in the context oflocative-type
. The defined macro's arglist is (symbol
lambda-list
&optional
docstring
).locative-type
is assumed to have been defined withdefine-symbol-locative-type
.
11.3 Extending document
The following utilities are for writing new document-object
and
locate-and-document
methods, which emit markdown.
-
Bound by
document
, this allows markdown output to depend on the output format.
[macro] with-heading (stream object title &key link-title-to) &body body
Write a markdown heading with
title
tostream
. Nestedwith-heading
s produce nested headings. If*document-link-sections*
, generate anchors based on thecanonical-reference
ofobject
.link-title-to
behaves like thelink-title-to
argument ofdefsection
.
[macro] documenting-reference (stream &key reference arglist name) &body body
Write
reference
tostream
as described in*document-mark-up-signatures*
, and establishreference
as a local reference. Unlessarglist
isnil
or:not-available
, it is printed after the name of object ofreference
.If
arglist
is a list, then it is must be a lambda list and is printed without the outermost parens and with the package names removed from the argument names.If
arglist
is a string, then it is printed withoutescape-markdown
.
[macro] with-dislocated-objects objects &body body
For each object in
objects
, establish a local reference with thedislocated
locative, which prevents autolinking.
[function] document-docstring docstring stream &key (indentation " ") exclude-first-line-p (paragraphp t)
Process and
docstring
tostream
, stripping indentation from it, performing Codification and Linking to Code, finally prefixing each line withindentation
. The prefix is not added to the first line ifexclude-first-line-p
. Ifparagraphp
, then add a newline before and after the output.
[function] documentation* object doc-type
A small wrapper around
cl:documentation
to smooth over differences between implementations.
[function] escape-markdown string
Construct a new string from
string
by adding a backslash before each special markdown character:*_`<>[]
[function] prin1-to-markdown object
Like
prin1-to-string
, but bind*print-case*
depending on*document-downcase-uppercase-code*
and*format*
, andescape-markdown
.
11.4 Extending find-source
The following utilities are for writing new find-source
and
locate-and-find-source
methods. Their locative arguments are
translated to Swank dspecs
, and it is an error if there is no
translation. In general, Swank supports Common Lisp
definitions (hence the variable
and function
(0
1
2
) locatives, for example)
but not PAX- and user-defined additions (e.g. section
(0
1
),
asdf:system
).
[function] find-definition object &rest locatives
Return a Swank source location for a definition of
object
. Try forming references withobject
and one oflocatives
. Stop at the first locative with which a definition is found, and return its location. If no location was found, then return the usual Swank(:error ...)
. The implementation is based on the rather expensiveswank-backend:find-definitions
function.
[function] find-definition* object reference-object &rest locatives
Like
find-definition
, but tries to get the definition ofobject
(for example afunction
(0
1
2
) ormethod
(0
1
) object) with the fast but not widely supportedswank-backend:find-source-location
before calling the much slower but more completeswank-backend:find-definitions
.
11.5 Sections
section
objects rarely need to be dissected since
defsection
and document
cover most needs. However, it is plausible
that one wants to subclass them and maybe redefine how they are
presented.
-
defsection
stores itsname
,title
,package
,readtable
andentries
arguments insection
objects.
[reader] section-name section (:name)
The name of the global variable whose value is this
section
(0
1
) object.
[reader] section-package section (:package)
*package*
will be bound to this package when generating documentation for this section if*document-normalize-packages*
.
[reader] section-readtable section (:readtable)
*readtable*
will be bound to this when generating documentation for this section if*document-normalize-packages*
.
[reader] section-title section (:title)
A markdown string or
nil
. Used in generated documentation.
[reader] section-link-title-to section (:link-title-to = nil)
A
reference
ornil
. Used in generated documentation.
[reader] section-entries section (:entries)
A list of markdown docstrings and
reference
objects in the order they occurred indefsection
.
11.6 Glossary Terms
glossary-term
objects rarely need to be dissected since
define-glossary-term
and document
cover most needs. However, it is
plausible that one wants to subclass them and maybe redefine how
they are presented.
-
define-glossary-term
instantiates aglossary-term
with itsname
andtitle
arguments.
[reader] glossary-term-name glossary-term (:name)
The name of the global variable whose value is this
glossary-term
(0
1
) object.
[reader] glossary-term-title glossary-term (:title)
A markdown string or
nil
. Used in generated documentation.