From 4b5843ede4bc46cc5ceb58e1ae00a9c6eacb911c Mon Sep 17 00:00:00 2001 From: Aleteoryx Date: Thu, 14 Nov 2024 20:46:41 -0500 Subject: update readme --- README.md | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e0328d3..44ed44d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # rss_dot_php -A minimal configurable RSS/Atom reader in about 200 lines of PHP. +A minimal configurable RSS/Atom reader in about 400 lines of PHP. This tool isn't intended for standalone reading, instead it's intended to be used as an aggregator for personal feeds, that can be @@ -8,6 +8,15 @@ embedded into a website via an <iframe>. You can see it in action [on my homepage][me]. +## Features + +- RSS/Atom autodetection +- Multiple feeds +- Caching +- Lives in just one file +- Renders post contents +- Renders media files + ## Usage To use this tool, just download the main [`rss.php`][php] file and edit it. @@ -22,6 +31,7 @@ The following options are supported per-feed: - `"title"`: The default. Shows the title as a link to the article. - `"content"`: Shows the title and content. - `"no_title"`: Hides the title, displays the content. A link to the source is put at the bottom. +- `$feeds[feed]["media"]`: Whether or not to render media files in the feed. Boolean. Defaults to true. - `$feeds[feed]["allow_html"]`: Whether or not to allow html in the content area, stripped. Boolean. Defaults to true. - `$feeds[feed]["ttl"]`: How long to cache the feed for, in seconds. Defaults to 1 hour. - `$feeds[feed]["linkrel"]`: For Atom, which `rel=` value to prefer when getting a link. Defaults to alternate. @@ -40,6 +50,43 @@ URLs overlap. [`aleteoryx.css`][css] contains an example stylesheet. +The HTML tree looks like this: + +```html +
+ + + + +
+
+

+
+
+ + + + + + • + +
+
+``` + [me]: https://aleteoryx.me [php]: https://git.aleteoryx.me/cgit/rss_dot_php/tree/rss.php [css]: https://git.aleteoryx.me/cgit/rss_dot_php/tree/aleteoryx.css -- cgit v1.2.3-54-g00ecf