<div dir="ltr"><div>Thanks everyone,<br></div><div><br></div><div>The @ syntax does what I want.</div><div>After I asked the question I found the answer on the Racket list.</div><div>The below based on this <a href="http://www.mail-archive.com/users@racket-lang.org/msg07162.html">http://www.mail-archive.com/users@racket-lang.org/msg07162.html</a></div>
<div>-------------------------------------------------------</div><div>#lang at-exp racket<br>(define RAW string-append)<br>(display @RAW{C:\Users\Harry\SANSKRIT\GRETIL ALL\adyappu.htm})</div><div>----------------------------------------------------------</div>
<div><br></div><div>2)<br></div><div>What am I doing wrong here.  -- everything :-)</div><div>I'm trying to change the command character from @ to #  so that I can have raw strings containing both \ and @ </div><div>looking at the racket documentation here:</div>
<div><a href="http://docs.racket-lang.org/scribble/reader-internals.html?q=at-exp#%28def._%28%28lib._scribble%2Freader..rkt%29._make-at-readtable%29%29">http://docs.racket-lang.org/scribble/reader-internals.html?q=at-exp#%28def._%28%28lib._scribble%2Freader..rkt%29._make-at-readtable%29%29</a></div>
<div><br></div><div>I've done this:</div><div><br></div><div>#lang at-exp racket<br>(require scribble/reader)<br>(use-at-readtable #:command-char #\#)<br>(define RAW string-append)<br>(display #RAW{C:\Users\Harry\SANSKRIT\GRETIL ALL\adyappu.htm})<br>
(display #<a href="mailto:RAW%7Bharryspier@hotmail.com">RAW{harryspier@hotmail.com</a>})<br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Dec 4, 2013 at 9:41 AM, Laurent <span dir="ltr"><<a href="mailto:laurent.orseau@gmail.com" target="_blank">laurent.orseau@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote"><div class="im">On Wed, Dec 4, 2013 at 1:21 PM, Greg Hendershott <span dir="ltr"><<a href="mailto:greghendershott@gmail.com" target="_blank">greghendershott@gmail.com</a>></span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">If you don't mind using `#lang at-exp racket`, I think you could write<br>
<br>
    @~a{C:\Users\Harry\SANSKRIT\GRETIL ALL\adyappu.htm}<br></blockquote><div><br></div></div><div>Or better here: @values{C:\Users\Harry\SANSKRIT\GRETIL ALL\adyappu.htm} to avoid the superfluous ~a operation.<br>Of course if used often, it can be abbreviated.<br>


<br></div><div>I've just surprised myself testing  @(...){...}  and seeing that it works:<br>@(lambda(x)x){C:\Users\Harry\SANSKRIT\GRETIL ALL\adyappu.htm}<span class="HOEnZb"><font color="#888888"><br></font></span></div>
<span class="HOEnZb"><font color="#888888"><div></div><div></div><div><br></div><div>Laurent<br>

</div></font></span></div><br></div></div>
</blockquote></div><br></div>