[racket] [scribble] rendering syntax
Right, I somehow naively hoped that the representation used by schemeblock could be that used in the source code, but I understand this may not be possible...
Thanks,
-- Éric
On Jun 8, 2010, at 9:24 PM, Carl Eastlund wrote:
> On Tue, Jun 8, 2010 at 9:16 PM, Eric Tanter <etanter at dcc.uchile.cl> wrote:
>> Hi,
>>
>> I noticed that (syntax ....) renders as #'.... inside a schemeblock.
>>
>> why is it so?
>>
>> Thanks,
>>
>> -- Éric
>
> #'EXPRESSION is shorthand for (syntax EXPRESSION) just like
> 'EXPRESSION is shorthand for (quote EXPRESSION). They have the same
> data representation, so any tool that renders them simply has to
> choose one. Many tools prefer to render the shorthand.
>
> --Carl