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
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
2 matches
Mail list logo