fork of https://alexschroeder.ch/cgit/gemini-write, with auth-source support
Go to file
Alex Schroeder 014c6dc353 Add 127.0.0.1 in case you're testing 2020-07-13 10:21:12 +02:00
README.md Add the Gemini Test Wiki to the README 2020-07-01 17:26:05 +02:00
gemini-wiki Add a bash script 2020-06-14 23:08:28 +02:00
gemini-write.el Add 127.0.0.1 in case you're testing 2020-07-13 10:21:12 +02:00

README.md

Gemini & Titan mode

This uses Elpher to browse Gemini sites and Gemini Mode to edit them using the Titan protocol.

Note: This needs Elpher 2.8. Maybe you need to get the latest version from the author's repository for it to work.

Once you have all three packages installed, use e to edit a Gemini page on a site that has Titan enabled. Use C-c C-c to save, use C-c C-k to cancel. Customize elpher-gemini-tokens to set passwords, tokens, or whatever you need in order to edit sites.

The known sites that have Titan enabled:

If you're installing all three packages from source, here's an example of how to set it all up:

(add-to-list 'load-path "/home/alex/src/elpher")
(autoload 'elpher "elpher" "Gopher and Gemini client" t)

(add-to-list 'load-path "/home/alex/src/gemini.el")
(autoload 'gemini-mode "gemini-mode" "Gemini Mode" t)

(add-to-list 'load-path "/home/alex/src/gemini-write")
(autoload 'gemini-write-init "gemini-write" "Initialize Gemini Write Mode" t)

(add-hook 'elpher-mode-hook 'gemini-write-init)