email-eww

Emacs library to send region or eww buffer by email
git clone https://logand.com/git/email-eww.git/
Log | Files | Refs

commit 0b50585111846c9383fda6cff478e974f3e4c0e1
parent 99d5a89a59a9ad4554eb29dfe26140668e08eacb
Author: Tomas Hlavaty <tom@logand.com>
Date:   Sun,  8 Dec 2024 10:27:35 +0100

fix wsws

Diffstat:
Memail-eww.el | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/email-eww.el b/email-eww.el @@ -283,7 +283,13 @@ (forward-paragraph) (delete-region (point) start)) (goto-char (point-max)) - (search-backward "Join the fight for socialism" nil t) + (or + (search-backward "The World Socialist Web Site is the voice" nil t) + (search-backward "Sign up for " nil t) + (search-backward "Read more" nil t) + (search-backward "Join the fight for socialism" nil t) + (search-backward "Only by building an independent movement" nil t) + ) (beginning-of-line) (delete-region (point) (point-max)) (message-goto-body))