| The web server does not seem support non-ASCII text correctly, but that should be very easy to fix.
E.g. if you write (defop hello req (pr "hello world \u263B"))
You get some strange looking text in you browser. This seem to be because arc is generating UTF-8 encoded output (which I think is MzScheme default encoding) but not declaring the encoding in the HTTP header, which will make most browsers default to interpret it as ISO-8859-1.It can be fixed by changing svr.asc line 105 to Content-Type: text/html;charset=utf-8
|