A couple weeks ago I posted a web-crawler I'd built for parsing Wikipedia articles (http://news.ycombinator.com/item?id=4436349). jDistiller grew out of this project. As a test I rebuilt the crawler in thirty lines of code using the jDistiller API:
new jDistiller()
.set('title', '#firstHeading')
.set('links', '#bodyContent p a', function(element, prev) {
var href = element.attr('href'),
key = href.replace('/wiki/', '');
new jDistiller() .set('title', '#firstHeading') .set('links', '#bodyContent p a', function(element, prev) { var href = element.attr('href'), key = href.replace('/wiki/', '');