Re: [racket-users] how to achieve internal cross-references in scribble/lp2

2015-12-30 Thread Matthew Flatt
With the current implementation of `scribble/lp2`, you could create a "dummy.rkt" module #lang racket/base (define foo 'foo) (define bar 'bar) (provide (all-defined-out)) and use `(require (for-label "dummy.rkt"))` with `@declare-exporting["dummy.rkt"]` to get hyperlinking. But I imagin

[racket-users] how to achieve internal cross-references in scribble/lp2

2015-12-29 Thread Matthew Butterick
Bug or insurmountable limitation? In the sample scribble/lp2 file below, the @racket[foo] reference at the end will *not* end up hyperlinked to the documentation for `foo` above it. I infer this is because `foo` and `bar` are treated as unbound identifiers. If you add @(require (for-label "test