
If a value is convertible to 'text, then use that conversion. Otherwise, convert using `write` instead of always using "???". Also, correct documentation to include convertible values among the valid forms of content, and document the new conversion rules there.
22 lines
340 B
Racket
22 lines
340 B
Racket
#lang scribble/base
|
|
@(require file/convertible)
|
|
|
|
@(struct s ()
|
|
#:property
|
|
prop:convertible
|
|
;; Not actually convertible to anything:
|
|
(lambda (v req default)
|
|
default))
|
|
|
|
@(struct c ()
|
|
#:property
|
|
prop:convertible
|
|
(lambda (v req default)
|
|
(cond
|
|
[(eq? req 'text) "hello"]
|
|
[else default])))
|
|
|
|
@(s)
|
|
|
|
@(c)
|