diff options
| author | alex <alex@pdp7.net> | 2026-03-22 19:28:12 +0100 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2026-03-22 19:28:12 +0100 |
| commit | 5b34b41bd33b0a8602625ae4b9946c95d0839502 (patch) | |
| tree | 21e00df5eb9c13fc81521f63067e2e6baeebfc1c /README.md | |
| parent | 5a560cb4c986b70e54955587671807457bb61b84 (diff) | |
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -59,3 +59,19 @@ Because gemtext is such a simple format, many traditional authoring techniques b For example, adding a header or a footer to many pages can be done by plain text file concatenation. `gemini-to-web` includes an indexer that can generate a reverse-chronological list of articles automatically to simplify maintenance of a blog-like site. + +## Creating aggregators + +This repo contains a few scripts that can help you work with Gemini subscriptions. + +``` +#!/bin/sh + +echo "# Feeds" +echo + +{ + python3 gemget.py gemini://aperalesf.flounder.online/gemlog | python3 parse-feed.py gemini://aperalesf.flounder.online/gemlog "Gemlog de Adrián Perales" + python3 gemget.py gemini://alex.corcoles.net | python3 parse-feed.py gemini://alex.corcoles.net "El blog es mío" +} | sort -r | head -20 | python3 reparse-feed.py +``` |
