Once again I'm trying to get @(include ...) working in scribble.

The trouble with just using @(include filepath) in scribble is that
the included file is read as racket input instead of syntax and 
semantics instead of wih scribble's syntax.

So I thought to try include/reader instead; it has an extra parameter
that can specify how the other file is to be read.

#lang scribble/base
@(require scribble/reader)
@(require racket/include)
foo
@(include/reader "si1.inc" (make-at-reader))
bar

But this gives me a completely unexpected problem.  It claims 
make-at-reader is an unbound identifier.

If I Use it outside the call to include/reader it's *not* unbound.

The Racket documentation tells me:

   The reader-expr is evaluated at expansion time in the transformer 
   environment.

Is there some way of making this work?

-- hendrik

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/20200406222722.2dvly3zgoi46iack%40topoi.pooq.com.

Reply via email to