scribble icon indicating copy to clipboard operation
scribble copied to clipboard

Update to scribble/example in section "4.1.5 Showing Racket Examples"

Open shunlog opened this issue 11 months ago • 0 comments

This section still uses interaction-eval from scribble/eval instead of the newer examples with #:hidden from scribble/examples.

I think these are the necessary changes, instead of:

@(require scribble/eval ...)

@interaction-eval[#:eval helper-eval
                   (require "helper.rkt")]

It should be:

@(require scribble/example ...)

@examples[#:hidden #:eval helper-eval
   (require "helper.rkt")]

shunlog avatar Feb 02 '25 18:02 shunlog