diff --git a/collects/scribble/manual.ss b/collects/scribble/manual.ss index 3fba5418..c47fc9b7 100644 --- a/collects/scribble/manual.ss +++ b/collects/scribble/manual.ss @@ -1771,6 +1771,9 @@ (define (seclink tag #:underline? [u? #t] #:doc [doc #f] . s) (make-link-element (if u? #f "plainlink") (decode-content s) `(part ,(doc-prefix doc tag)))) + (define (other-manual #:underline? [u? #t] doc) + (secref #:doc doc #:underline? u? "top")) + (define (*schemelink stx-id id . s) (let ([content (decode-content s)]) (make-delayed-element @@ -1786,7 +1789,7 @@ (define-syntax schemelink (syntax-rules () [(_ id . content) (*schemelink (quote-syntax id) 'id . content)])) - (provide secref seclink schemelink) + (provide secref seclink schemelink other-manual) (define (pidefterm . s) (let ([c (apply defterm s)]) diff --git a/collects/scribblings/scribble/how-to.scrbl b/collects/scribblings/scribble/how-to.scrbl index afcdbd05..cee2c9a9 100644 --- a/collects/scribblings/scribble/how-to.scrbl +++ b/collects/scribblings/scribble/how-to.scrbl @@ -19,8 +19,10 @@ To document a collection or @|PLaneT| package: @itemize{ @item{Create a file in your collection or planet package with the - file extension @filepath{.scrbl}. The remainder of these - instructions assume that the file is called @filepath{manual.scrbl}.} + file extension @filepath{.scrbl}. Beware that the file name you + choose will determine the output directory's name. The + remainder of these instructions assume that the file is called + @filepath{manual.scrbl}.} @item{Start @filepath{manual.scrbl} like this: @verbatim[#<