Allow whole s-expressions to change the way they are rendered, using the scribble-render syntax property
This commit is contained in:
parent
23ddbecfa1
commit
923eba8839
|
@ -1005,6 +1005,9 @@
|
||||||
(let ([slv (and (identifier? v)
|
(let ([slv (and (identifier? v)
|
||||||
(syntax-local-value v (lambda () #f)))])
|
(syntax-local-value v (lambda () #f)))])
|
||||||
(cond
|
(cond
|
||||||
|
[(and (syntax? v) (syntax-property v 'scribble-render))
|
||||||
|
=> (λ (renderer)
|
||||||
|
(wrap-loc v #f (renderer v)))]
|
||||||
[(variable-id? slv)
|
[(variable-id? slv)
|
||||||
(wrap-loc v #f `(,#'make-var-id ',(variable-id-sym slv)))]
|
(wrap-loc v #f `(,#'make-var-id ',(variable-id-sym slv)))]
|
||||||
[(element-id-transformer? slv)
|
[(element-id-transformer? slv)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user