[plt-scheme] Special characters in webserver

From: Robby Findler (robby at cs.uchicago.edu)
Date: Wed Apr 2 12:01:41 EST 2003

In the xexpr, just put 

  179

ie:

   `(div "This is some text with " 179 " funny characters it in")

or, if you are writing XML, this is the equivalent:

  <div>This is some funny text with &#179 in it</div>

This also works for the symbolic names of entities, use symbols rather
than numbers.

Robby

At Wed, 02 Apr 2003 11:53:27 -0500 (EST), dvanhorn at emba.uvm.edu wrote:
>   For list-related administrative tasks:
>   http://list.cs.brown.edu/mailman/listinfo/plt-scheme
> 
> How does one produce the string "&#179;" in the webserver?  Ie, how can I keep
> the string from becoming "&amp;#179;"?
> 
> TIA
> -d
> 
> 



Posted on the users mailing list.