help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: rcd-box.el for box drawings and tables


From: Emanuel Berg
Subject: Re: rcd-box.el for box drawings and tables
Date: Wed, 09 Nov 2022 17:03:18 +0100
User-agent: Gnus/5.13 (Gnus v5.13)

Jude DaShiell wrote:

> For screen reader users printable ascii works.

So this is how it is for you?

?????????????????????????
? Very impressive, Jean ?
?????????????????????????

Sure, but it is even fine on my 512K Linux VT so you are even
farther from everyone else, I understand the situation tho, if
it happens often I think I'd automate so that "popular chars"
outside of your range are replaced by others, much like I just
did with Gnus, replacing ʼ with '.

(I think ' is even more popular LOL)

(defun gnus-article-wash-more ()
  (interactive)
  (article-translate-strings
   '(
     ("--8<---------------cut"                     "")
     ("here---------------end--------------->8---" "")
     ("here---------------start------------->8---" "")
     ("Sendt fra min iPad"                         "")
     ("Skickades från E-post för Windows 10"       "")
     ("Skickat från Yahoo Mail för iPhone"         "")
     ("ʼ" "'")
     ))
  (gnus-article-strip-multiple-blank-lines) )

;; (setq gnus-article-prepare-hook nil)
(defun gnus-article-prepare-hook-f ()
  (gnus-with-article-buffer
    (gnus-article-wash-more) ))
(add-hook 'gnus-article-prepare-hook #'gnus-article-prepare-hook-f)

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]