Merge branch 'master' into gh-pages

This commit is contained in:
Greg Hendershott 2012-10-26 11:53:48 -04:00
commit 77354688b9
3 changed files with 37 additions and 7 deletions

34
gh.css
View File

@ -1,7 +1,37 @@
/* Override some default Racket styles for a hopefully fresher look. */
/* Override some default styles for a hopefully fresher look. */
/*** racket.css ***/
/* Monospace: */
.maincolumn, .refpara, .refelem, .tocset, .stt, .hspace, .refparaleft, .refelemleft {
.RktIn, .RktRdr, .RktPn, .RktMeta,
.RktMod, .RktKw, .RktVar, .RktSym,
.RktRes, .RktOut, .RktCmt, .RktVal, .hspace {
font-family: monospace;
font-size: 95%;
white-space: inherit;
}
/* Serif: */
.inheritedlbl {
font-family: 'Fenix',serif;
}
/* Sans-serif: */
.RBackgroundLabelInner {
font-family: sans-serif;
}
.RktBlk {
background-color: #f8faf8;
white-space: inherit;
text-align: left;
}
/*** scribble.css ***/
/* Monospace: */
.maincolumn, .refpara, .refelem, .tocset, .stt, .refparaleft, .refelemleft {
font-family: monospace;
}

File diff suppressed because one or more lines are too long

View File

@ -153,11 +153,11 @@ search-and-replace.
Maybe you know that the usual way to define a function in Racket:
@racket[(define (f x) ...)]
@codeblock{(define (f x) ...)}
is shorthand for:
@racket[(define f (lambda (x) ...))]
@codeblock{(define f (lambda (x) ...))}
That shorthand lets you avoid typing @racket[lambda] and some parentheses.