Re: [racket-users] Re: local variables are hyperlinkedinscribble/manual

2020-06-13 Thread Ryan Kramer
That was actually Ryan Culpepper. Sorry for the noise, but I can't implicitly take credit for something that I didn't do. By the way, thank you Ryan C for both of those techniques. I've already happily used `make-element-id-transformer` On Saturday, June 13, 2020 at 4:07:06 PM UTC-5, jos.koot

[racket-users] #lang support for menu bar?

2020-06-13 Thread jon stenerson
Some #lang like scribble cause buttons to be added to DrRacket toolbar. Can they also add menus or menu items? There is a quickscript example that does this so it doesn't seem unreasonable. But I don't know. Jon -- You received this message because you are subscribed to the Google Groups

Re: [racket-users] Re: local variables are hyperlinked inscribble/manual

2020-06-13 Thread Simon Schlee
I struggled with a similar case, in my case the easiest/simplest solution was to use: @var[identifier] instead of @racket[identifier] (this works well for function arguments, but might not work for your case)

RE: [racket-users] Re: local variables are hyperlinkedinscribble/manual

2020-06-13 Thread Jos Koot
default.kra...@gmail.com gave me a clear and usable answer. His email follows below. Best wishes, Jos >From Ryan Kramer You can also use make-element-id-transformer, like this:     (define-syntax SET       (make-element-id-transformer        (lambda _ #'(racketvarfont "set" Then Scribble