diff --git a/collects/scribble/latex-render.ss b/collects/scribble/latex-render.ss index c171c0d1..00e7a594 100644 --- a/collects/scribble/latex-render.ss +++ b/collects/scribble/latex-render.ss @@ -62,6 +62,7 @@ (printf "\\definecolor{LightGray}{rgb}{0.90,0.90,0.90}\n") (printf "\\newcommand{\\schemeinput}[1]{\\colorbox{LightGray}{\\hspace{-0.5ex}\\schemeinputcol{#1}\\hspace{-0.5ex}}}\n") (printf "\\newcommand{\\highlighted}[1]{\\colorbox{PaleBlue}{\\hspace{-0.5ex}\\schemeinputcol{#1}\\hspace{-0.5ex}}}\n") + (printf "\\newcommand{\\techlink}[1]{#1}\n") (printf "\\begin{document}\n") (when (part-title-content d) (printf "\\title{") diff --git a/collects/scribble/manual.ss b/collects/scribble/manual.ss index b8ad7a58..aebaaa9b 100644 --- a/collects/scribble/manual.ss +++ b/collects/scribble/manual.ss @@ -151,6 +151,28 @@ ;; ---------------------------------------- + (provide deftech tech) + + (define (*tech make-elem style s) + (let* ([c (decode-content s)] + [s (regexp-replace* #px"[-\\s]+" + (regexp-replace + #rx"s$" + (string-foldcase (content->string c)) + "") + " ")]) + (make-elem style + c + (format "tech-term:~a" s)))) + + (define/kw (deftech #:body s) + (*tech make-target-element #f (list (apply defterm s)))) + + (define/kw (tech #:body s) + (*tech make-link-element "techlink" s)) + + ;; ---------------------------------------- + (provide defproc defproc* defstruct defthing defform defform* defform/subs defform*/subs defform/none specform specform/subs specsubform specspecsubform specsubform/inline diff --git a/collects/scribble/scribble.css b/collects/scribble/scribble.css index 748d3b19..04ba33ec 100644 --- a/collects/scribble/scribble.css +++ b/collects/scribble/scribble.css @@ -246,6 +246,15 @@ color: red; } + .techlink { + text-decoration: none; + color: black; + } + .techlink:hover { + text-decoration: underline; + color: blue; + } + .schemeresult { color: #0000af; font-family: Courier; font-size: 80%;