racket/collects/unstable/scribblings/utils.rkt
Eli Barzilay 3f9bc25c5c Remove `eval/require' and many of its one-time uses.
(Cuts the rendering time for unstable by around 50%.)
2011-06-06 09:48:04 -04:00

19 lines
539 B
Racket

#lang at-exp racket/base
(require scribble/base scribble/manual scribble/core scribble/eval)
(provide unstable
unstable-header
addition)
(define (unstable . authors)
(make-compound-paragraph plain
(list (apply author authors)
(unstable-header))))
(define (unstable-header)
@para{This library is @emph{unstable};
compatibility will not be maintained.
See @secref{unstable} for more information.})
(define (addition name)
@margin-note{The subsequent bindings were added by @|name|.})