Merge branch 'master' into gh-pages
This commit is contained in:
commit
77354688b9
34
gh.css
34
gh.css
|
@ -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
4
main.rkt
4
main.rkt
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user