Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which library should I use to generate RSS in Common Lisp?

What's the best library to use to generate RSS for a webserver written in Common Lisp?

like image 440
John McAleely Avatar asked Sep 16 '08 20:09

John McAleely


1 Answers

Most anything will probably do. Personally, I've been using xml-emitter for my blog's Atom feed, which has worked out well so far.

Just choose whichever XML generation library you like and hack away, I'd say. As others have remarked, RSS is simple; it's little work to generate it manually.

That said, I recommend not generating plain strings directly. Having to deal with quoting data is more of a hassle than installing an XML library, and it's also insecure in case your feed contains data submitted by visitors of your website.

like image 191
Matthias Benkard Avatar answered Oct 02 '22 14:10

Matthias Benkard