about summary refs log tree commit diff
path: root/README.gmi
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2021-02-20 22:31:09 -0500
committerZach DeCook <zachdecook@librem.one>2021-02-20 22:31:09 -0500
commitb1e62e2a3586ced130cb04595b135cb827dc5d7e (patch)
tree0274952e208221bc081e43edb481456a17043a97 /README.gmi
parent9318ab6caa565430d480642c28ec293a21301ecc (diff)
downloadzachwalk-b1e62e2a3586ced130cb04595b135cb827dc5d7e.tar.gz
Readme: Rename to markdown extension
Diffstat (limited to 'README.gmi')
-rw-r--r--README.gmi22
1 files changed, 0 insertions, 22 deletions
diff --git a/README.gmi b/README.gmi
deleted file mode 100644
index 03a47cd..0000000
--- a/README.gmi
+++ /dev/null
@@ -1,22 +0,0 @@
-# ZachWalk: a gemini feed checker
-## A replacement for spacewalk
-
-This is just like spacewalk, except without
-* custom config file format
-* hashing page content to check for updates
-* multiple CLI commands
-* built in sorting
-* hundreds of lines of code
-
-ZachWalk operates on a gemtext file, like a pipe. It will load each gemini link, updating the date in the description.
-
-Instead of page hashing, we just parse the page for links with dates in the text. Python does all the heavy lifting for parsing these. If the page can't be updated, the existing date will be kept.
-
-```sh examples
-# you can use its own output as a template file.
-cat spacewalk.gmi | ./zachwalk.py > radar.gmi
-# output entries from your bookmarks which look like gemini feeds
-grep '^=>' bookmarks.gmi | ./zachwalk.py | grep -v 1970-01-01 > radar.gmi
-# sort your feeds by date
-echo "Most recently modified on top." | cat /dev/stdin gemlogs.gmi | ./zachwalk.py | sort -k 3 -r > gemlogs-sorted.gmi
-```