Hi Paul, There are several good tools out there for doing this: Oleg Kiselyov has written a Scheme-based port of SAX called SSAX [1] that can read and emit S-expressions in a format he calls SXML. It's available for Guile as part of Andy Wingo's guile-lib [2]. For permissive HTML parsing, Neil Van Dyke has written HtmlPrag [3]. And if you're interested in a more DOM-based approach, I've got a module called SDOM [4].
Hope that helps! Regards, Julian [1]: http://okmij.org/ftp/Scheme/SXML.html [2]: http://home.gna.org/guile-lib/ [3]: http://www.neilvandyke.org/htmlprag/ [4]: http://www.nongnu.org/sdom/ On Tue, Mar 25, 2008 at 3:37 PM, Paul Emsley <[EMAIL PROTECTED]> wrote: > > Dear Guilers, > > I have in mind to write a little script that makes a web page about the > state of > various files. > > I'd like to use some schemey way of doing this. s-expression -> HTML > perhaps. > > What is the thinking guile-user's way of approaching this?