RSSible (html | json)

Paste a URL and CSS selectors; get an RSS feed; free and opensource.

Runs entirely on the free tier of Cloudflare workers. Click on the demo links ⤸ to see it in action.

$
title
desc
date
limit

Important: don't repeat the item selector in title/link/desc/date selectors. Think of the item as the div container for, say, article, and item details as child/nested elements inside each article.
JSON pages: internally converted to HTML (nested div elements), where class names match the JSON keys, e.g.,title becomes class="title". This means you can use the same CSS selectors as HTML pages. Root object has special _root class; array items _item class. Use ?mirror=1 param to see the converted HTML version of a JSON page (example; json link).
Pro tip: filters are inclusive - they include items that match the pattern. To exclude, use a negative lookahead, e.g. /^(?!.*(perl)).*$/ matches everything except strings containing "perl".
  // 👀 Your preview will show up here...