doc edits

svn: r6708

original commit: ceb1b78cea262486b87f88b2b91ffd493162ce5e
This commit is contained in:
Matthew Flatt 2007-06-20 08:54:40 +00:00
parent 176a0623d9
commit 33d0774fea
3 changed files with 32 additions and 0 deletions

View File

@ -62,6 +62,7 @@
(printf "\\definecolor{LightGray}{rgb}{0.90,0.90,0.90}\n") (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{\\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{\\highlighted}[1]{\\colorbox{PaleBlue}{\\hspace{-0.5ex}\\schemeinputcol{#1}\\hspace{-0.5ex}}}\n")
(printf "\\newcommand{\\techlink}[1]{#1}\n")
(printf "\\begin{document}\n") (printf "\\begin{document}\n")
(when (part-title-content d) (when (part-title-content d)
(printf "\\title{") (printf "\\title{")

View File

@ -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 (provide defproc defproc* defstruct defthing defform defform* defform/subs defform*/subs defform/none
specform specform/subs specform specform/subs
specsubform specspecsubform specsubform/inline specsubform specspecsubform specsubform/inline

View File

@ -246,6 +246,15 @@
color: red; color: red;
} }
.techlink {
text-decoration: none;
color: black;
}
.techlink:hover {
text-decoration: underline;
color: blue;
}
.schemeresult { .schemeresult {
color: #0000af; color: #0000af;
font-family: Courier; font-size: 80%; font-family: Courier; font-size: 80%;