File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
scribble-doc/scribblings/scribble
scribble-lib/scribble/private Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -519,10 +519,14 @@ hyperlink's resolution in HTML potentially delayed; see
519519@history[#:changed "1.21 " @elem{Disabled @racket[racket]-style special
520520 treatment of identifiers.}]}
521521
522- @defform[(racketmodlink datum pre-content-expr ... )]{
522+ @defform[(racketmodlink datum maybe-indirect pre-content-expr ... )
523+ #:grammar ([maybe-indirect code:blank
524+ #:indirect ])]{
523525Like @racket[racketmodname], but separating the module path to link
524526from the content to be linked. The @racket[datum] module path is always
525- linked, even if it is not an identifier.}
527+ linked, even if it is not an identifier.
528+
529+ @history[#:changed "1.59 " @elem{Added support for @racket[#:indirect ].}]}
526530
527531@defproc[(litchar [str string?] ... ) element?]{Typesets @racket[str]s as a
528532representation of literal text. Use this when you have to talk about
Original file line number Diff line number Diff line change 207207 (as-modname-link 'n (**racketmodname n) #t )]))
208208
209209(define-syntax racketmodlink
210- (syntax-rules (unsyntax )
210+ (syntax-rules ()
211+ [(racketmodlink n #:indirect content ... )
212+ (*as-modname-link 'n (elem #:style #f content ... ) #t )]
211213 [(racketmodlink n content ... )
212214 (*as-modname-link 'n (elem #:style #f content ... ) #f )]))
213215
You can’t perform that action at this time.
0 commit comments