> Even better, it would be great if you could use a formatter that supports Scheme, so that keywords would be in bold face, etc.
I guess this is a little bit harder to do, especially since many
snippets are not 100% Scheme-compliant. (Or would a simple
regular-expression-based find-and-replace suffice?) However this is
quite low on my TODO list at the moment (I have to get back at
documenting my interpreter's builtin functionality)...
Yes, that makes sense. This is only a nice-to-have feature, anyway.
> I found a few instances of raw TeX formatting, e.g. "$\Sigma$" appears in the documentation of string-upcase. It would be good to fix those.
Yes, I forgot about those... I'll have to think how to best handle
these... I think the best would be to use HTML-compliant escape
codes; the other alternative would be to use the character's UTF-8
encoding, but this could break some parsers.
Ever serious browser supports UTF-8 these days. I'm not sure whether UTF-8 or HTML entity encodings would be more widely supported.
Unfortunately the SRFI's are again quite low on my TODO, but I'll add
them once I implement support for them in my interpreter.
I understand. Prioritizing is one of the most important practices for success, as far as I can tell.