hyper-literate/scribble-test/tests/scribble/docs/convertible.scrbl
Matthew Flatt 9f5fe0859d change base handling of convertible values as content
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.
2017-08-21 08:41:09 -06:00

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)