Extend an existing XDOC topic with additional content.
Basic example:
(defxdoc foo :short "Example of xdoc-extend." :long "<p>Foo is very important.</p>") (xdoc::xdoc-extend foo "<p>Note: you can't use Foo with Bar.</p>")
is roughly equivalent to just writing:
(defxdoc foo :short "Example of xdoc-extend." :long "<p>Foo is very important.</p> <p>Note: you can't use Foo with Bar.</p>")
(xdoc-extend name long) requires that
This mechanism is barbaric and fragile. For instance:
Nevertheless, judiciously used, it can be a useful tool for connecting together related content that must be kept in separate files, e.g., for bootstrapping or other reasons.