Allow whole s-expressions to change the way they are rendered, using the scribble-render syntax property

This commit is contained in:
Georges Dupéron 2016-12-27 19:11:32 +01:00
parent 23ddbecfa1
commit 923eba8839

View File

@ -1005,6 +1005,9 @@
(let ([slv (and (identifier? v)
(syntax-local-value v (lambda () #f)))])
(cond
[(and (syntax? v) (syntax-property v 'scribble-render))
=> (λ (renderer)
(wrap-loc v #f (renderer v)))]
[(variable-id? slv)
(wrap-loc v #f `(,#'make-var-id ',(variable-id-sym slv)))]
[(element-id-transformer? slv)