Re: [racket-dev] Scribble Racket Code with Here Strings

2010-10-31 Thread Matthew Flatt
At Fri, 29 Oct 2010 15:53:57 -0600, Doug Williams wrote: > I sometimes use here strings for readability when building queries, etc. > [...] > But I haven't found a good way to document this (as Racket code) in > Scribble. Everything I've tried renders like: I guess it's time for me to stop saying

Re: [racket-dev] Scribble Racket Code with Here Strings

2010-10-30 Thread Sam Tobin-Hochstadt
On Sat, Oct 30, 2010 at 11:56 AM, Eli Barzilay wrote: > >> That is, the here string has been rendered as a normal string with lots of >> whitespace after. > > There's lots of ways to create strings and the documentation system > can't tell them apart -- so it rendered it as a string, but then > no

Re: [racket-dev] Scribble Racket Code with Here Strings

2010-10-30 Thread Eli Barzilay
Yesterday, Doug Williams wrote: > I sometimes use here strings for readability when building queries, > etc. For example: > > (let-values (((variables results) >   (get-repository-query-tuple r > #<<--- > select * from {x} sys:repositoryID {y} > using namespace >   sys =

[racket-dev] Scribble Racket Code with Here Strings

2010-10-29 Thread Doug Williams
I sometimes use here strings for readability when building queries, etc. For example: (let-values (((variables results) (get-repository-query-tuple r #<<--- select * from {x} sys:repositoryID {y} using namespace sys = ---