Answers:
eww
基本上是包装周围的交互式包装shr
,将HTML呈现为Emacs文本(实际的HTML解析由libxml
包装完成)。您可以mu4e
通过设置mu4e-html2text-command
为简单的自定义函数来使用它:
(defun my-render-html-message ()
(let ((dom (libxml-parse-html-region (point-min) (point-max))))
(erase-buffer)
(shr-insert-document dom)
(goto-char (point-min))))
(setq mu4e-html2text-command 'my-render-html-message)
的git版本mu4e
包括内置的,mu4e-shr2text
可以这样设置:
(require 'mu4e-contrib)
(setq mu4e-html2text-command 'mu4e-shr2text)
mu4e-shr2text
不显示图像:(