From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Stephen J. Turnbull" Newsgroups: gmane.emacs.devel Subject: Re: HTML mail in rmail Date: Sat, 12 Oct 2013 10:36:23 +0900 Message-ID: <87y55zgtig.fsf@uwakimon.sk.tsukuba.ac.jp> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 X-Trace: ger.gmane.org 1381541806 29202 80.91.229.3 (12 Oct 2013 01:36:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 12 Oct 2013 01:36:46 +0000 (UTC) Cc: Ken Olum , emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 12 03:36:49 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VUo8N-00037s-HW for ged-emacs-devel@m.gmane.org; Sat, 12 Oct 2013 03:36:47 +0200 Original-Received: from localhost ([::1]:56737 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUo8M-00038L-K7 for ged-emacs-devel@m.gmane.org; Fri, 11 Oct 2013 21:36:46 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUo8D-000389-3P for emacs-devel@gnu.org; Fri, 11 Oct 2013 21:36:44 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VUo83-0002VO-WD for emacs-devel@gnu.org; Fri, 11 Oct 2013 21:36:37 -0400 Original-Received: from mgmt1.sk.tsukuba.ac.jp ([130.158.97.223]:38231) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUo83-0002Uy-Ly; Fri, 11 Oct 2013 21:36:27 -0400 Original-Received: from uwakimon.sk.tsukuba.ac.jp (uwakimon.sk.tsukuba.ac.jp [130.158.99.156]) by mgmt1.sk.tsukuba.ac.jp (Postfix) with ESMTP id A27383FA0A0B; Sat, 12 Oct 2013 10:36:23 +0900 (JST) Original-Received: by uwakimon.sk.tsukuba.ac.jp (Postfix, from userid 1000) id 95D5D129E2C; Sat, 12 Oct 2013 10:36:23 +0900 (JST) In-Reply-To: X-Mailer: VM undefined under 21.5 (beta34) "kale" 182d01410b8d XEmacs Lucid (x86_64-unknown-linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 130.158.97.223 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:164126 Archived-At: Richard Stallman writes: > I have a simple macro to save the HTML into a file. > Then I run lynx in a different terminal. lynx (also links, w3m, etc IIRC) has a filter mode[1]: (defun mua-tame-html (start end) (shell-command-on-region start end ;; add options to taste, these (used to) do pretty well IM(now old)E "lynx -force_html -dump -stdin -width 72" nil 'replace)) Footnotes: [1] Some of them don't know how to read from stdin so you need a temporary file. Also, whether you prefer to read such mail in RMail or in a separate browser is a matter of taste and of the need for browser features when reading.