Re: [racket-users] scribble newbie, myfunctionname undefined

2017-09-29 Thread Geoffrey Knauth
Jack, following your advice, I did need one additional change. Previously I had: @(define my-eval (make-base-eval)) @example-eval[#:eval my-eval (require foo)] Using scribble/example instead of scribble/eval, this additional change made things work: @(define my-eval (make-base-eval

Re: [racket-users] How to identify the target of a symlink?

2017-09-29 Thread David Storrs
Thanks, Jon. I would not have thought to check Paths. (Obviously.) Thanks, Neil. canonicalize-path looks useful, and my software is mostly going to be used on OSX and/or Linux, so it's a good fit. Dave On Thu, Sep 28, 2017 at 7:32 PM, Jon Zeppieri wrote: >

Re: [racket-users] scribble newbie, myfunctionname undefined

2017-09-29 Thread Geoffrey Knauth
On Thursday, September 28, 2017 at 3:04:46 PM UTC-4, Ben Greenman wrote: > > Try adding `#:eval foo-eval` to `interaction`. (I'm guessing that would > work.) > To close the loop, Ben, yes this also did work. Thanks! -- You received this message because you are subscribed to the Google Groups

Re: [racket-users] Racket documentation formats

2017-09-29 Thread Ben Greenman
You can download PDFs for most of the documentation here: http://download.racket-lang.org/all-versions.html And if your device has Racket installed, you can run `raco docs` to view a local copy of the HTML. -- You received this message because you are subscribed to the Google Groups "Racket

[racket-users] Racket documentation formats

2017-09-29 Thread Robert X
Is the Racket documentation available for offline reading in a PDF or some type of epub format? Thanks, Bob -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [racket-users] scribble newbie, myfunctionname undefined

2017-09-29 Thread Geoffrey Knauth
Jack, thanks, what you write makes a whole lot more sense and fits with what I remember of scribble from the last time I scribbled, which was years ago. I am delighted to find that scribble has many more interesting features these days. My answers below: On Friday, September 29, 2017 at

Re: [racket-users] scribble newbie, myfunctionname undefined

2017-09-29 Thread Jack Firth
A few other notes / tips: - The `scribble/example` library is meant to replace the legacy `scribble/eval` library, as the `examples` form provided by `scribble/example` will make documentation building fail if example code throws an unexpected error. - Did you add a `scribblings` field to your