commit 2991306101c90b8a9774b16e7c981926726c45b7
parent 5caf386a47cdf2ea7ddad1f8f0fad5fa4d08e863
Author: Matthew Flatt <mflatt@racket-lang.org>
Date: Wed, 12 Dec 2007 16:31:57 +0000
adjust document names
svn: r7968
original commit: a559a710d48b07411811c22045f77a9ef7a1750f
Diffstat:
3 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/collects/scribble/manual.ss b/collects/scribble/manual.ss
@@ -1527,10 +1527,10 @@
s)
s))
- (define (secref s #:doc [doc #f])
- (make-link-element #f null `(part ,(doc-prefix doc s))))
- (define (seclink tag #:doc [doc #f] . s)
- (make-link-element #f (decode-content s) `(part ,(doc-prefix doc tag))))
+ (define (secref s #:underline? [u? #t] #:doc [doc #f])
+ (make-link-element (if u? #f "plainlink") null `(part ,(doc-prefix doc s))))
+ (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 (*schemelink stx-id id . s)
(make-link-element #f (decode-content s) (or (register-scheme-definition stx-id)
(format "--UNDEFINED:~a--" (syntax-e stx-id)))))
diff --git a/collects/scribble/scribble.css b/collects/scribble/scribble.css
@@ -390,6 +390,11 @@
color: red;
}
+ .plainlink {
+ text-decoration: none;
+ color: blue;
+ }
+
.techlink {
text-decoration: none;
color: black;
diff --git a/collects/scribblings/scribble/scribble.scrbl b/collects/scribblings/scribble/scribble.scrbl
@@ -4,7 +4,7 @@
@require["utils.ss"]
@title[#:tag-prefix '(lib "scribblings/scribble/scribble.scrbl")
- #:tag "top"]{Scribble}
+ #:tag "top"]{@bold{Scribble}: PLT Documentation Tool}
The @filepath{scribble} collection provides libraries that can be used to
create documents from Scheme.