Is there a static gemini blogger that takes a directory of gmi, extracts (say) the title and first paragraph, and generates an index? Something more than a page of links, and less than munging all of the blog entries together into one file.
2 years ago ยท ๐ know
What @marginalia said. Or my version: gemini://synthe.ist/genindex.sh ยท 2 years ago
for f in *.gmi; do <$f head -n 4 | sed 's/^#/##/g'; echo "=>$f"; done ยท 2 years ago