Re: [racket-users] Link to racket doc in scribble?

2017-01-11 Thread Andreas Olsson
I missed the 'tech function, thanks for the tip! -- 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 racket-users+unsubscr...@googlegroups.com. For more options,

Re: [racket-users] Link to racket doc in scribble?

2017-01-11 Thread Robby Findler
Also, if you have something like this: #lang scribble/manual @(require (for-label racket)) @racket[future] you should see the word `future` linked to the docs. (And, if you had a larger program in there, all the identifiers that come from the `racket` module would be linked.) Robby On

Re: [racket-users] Link to racket doc in scribble?

2017-01-11 Thread Vincent St-Amour
Andreas, To link to a technical term (i.e., not to a particular binding), you'll want to use the `tech` function. To link to a term in another document (in this case the Racket Reference), you'll want to use the `#:doc` keyword, with the module path of (the top-level of) that document, in this

[racket-users] Link to racket doc in scribble?

2017-01-11 Thread Andreas Olsson
I'm trying to include highlighted links in my doc to documents in the racket docs. It's not as easy as I thought. How is it done? I like to have like FUTURE highlighted and clickable. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To