[plt-scheme] Scribble and here strings

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Mon Jul 27 17:17:24 EDT 2009

At Mon, 27 Jul 2009 23:11:13 +0200, Jens Axel Søgaard wrote:
> What's the correct way of scribbling here strings?
> 
> This is what my code looks like:
> 
> (define-sql (create-table-entries)
> #<<SQL
> CREATE TABLE entries (
>   entry_id  INTEGER PRIMARY KEY,
>   title     TEXT,
>   url       TEXT,
>   score     INTEGER )
> SQL
> 
> I tried to wrap it in a simple @schemeblock[...] but that is not enough,
> due to the way the parser works.

You want a different function that typesets "verbatim" text but applies
color and hyperlinks on top of it, like Check Syntax in DrScheme. Now
seems like a good time for me to finally write that...



Posted on the users mailing list.