Re: [racket] @racket vs @code in scribble/manual

2014-07-31 Thread Jack Firth
That explains it, thank you. On Thu, Jul 31, 2014 at 12:50 AM, Matthew Flatt wrote: > Unlike `coed`, the `racket` form is meant to be used with [] instead of > {}: > > @racket[text] > > > When you write > > @foo{text} > > it's equivalent to > > @foo["text"] > > for any `foo`. > > > At Thu, 3

Re: [racket] @racket vs @code in scribble/manual

2014-07-31 Thread Matthew Flatt
Unlike `coed`, the `racket` form is meant to be used with [] instead of {}: @racket[text] When you write @foo{text} it's equivalent to @foo["text"] for any `foo`. At Thu, 31 Jul 2014 00:30:50 -0700, Jack Firth wrote: > When I use #lang scribble/manual I have the issue of @racket{text}

Re: [racket] @racket vs @code in scribble/manual

2014-07-31 Thread Danny Yoo
On Thu, Jul 31, 2014 at 12:30 AM, Jack Firth wrote: > When I use #lang scribble/manual I have the issue of @racket{text} rendering > as a string Do you mean to write @racket[list]? Braces mean something different than brackets in Scribble. Racket Users list: http://lists

[racket] @racket vs @code in scribble/manual

2014-07-31 Thread Jack Firth
When I use #lang scribble/manual I have the issue of @racket{text} rendering as a string, e.g. @racket{text} becomes @code{"text"} regardless of what is substituted for text. I'm using Racket 6.01 64 bit on a Windows 7 machine with DrRacket, and the exact program that demonstrates the problem on my