]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't advertise obsolete library html2text.el
authorStefan Kangas <stefan@marxist.se>
Sun, 14 Aug 2022 14:28:25 +0000 (16:28 +0200)
committerStefan Kangas <stefan@marxist.se>
Sun, 14 Aug 2022 21:46:33 +0000 (23:46 +0200)
* doc/misc/emacs-mime.texi (Display Customization):
* doc/misc/gnus-faq.texi (FAQ 4-7):
* doc/misc/gnus.texi (Article Washing):
* doc/misc/mh-e.texi (HTML):
* lisp/gnus/mm-decode.el (mm-text-html-renderer): Don't advertise
obsolete library html2text.el.

doc/misc/emacs-mime.texi
doc/misc/gnus-faq.texi
doc/misc/gnus.texi
doc/misc/mh-e.texi
lisp/gnus/mm-decode.el

index 640712edf33fc32a6f54297aa13354f85452572a..5f4e1a639be509d24428507ed766241eef226ad7 100644 (file)
@@ -403,9 +403,9 @@ This selects the function used to render @acronym{HTML}.  The
 predefined renderers are selected by the symbols @code{shr},
 @code{gnus-w3m}, @code{w3m}@footnote{See
 @uref{http://emacs-w3m.namazu.org/} for more information about
-emacs-w3m}, @code{links}, @code{lynx}, @code{w3m-standalone} or
-@code{html2text}.  You can also specify a function, which will be
-called with a @acronym{MIME} handle as the argument.
+emacs-w3m}, @code{links}, @code{lynx}, or @code{w3m-standalone}.  You
+can also specify a function, which will be called with a
+@acronym{MIME} handle as the argument.
 
 @item mm-html-inhibit-images
 @vindex mm-html-inhibit-images
index 544d6279847a67b91b9188b0ddc3c90bb1e07c0d..c442ca1bacd5a8e2863a8eef78d65a8017ea3d06 100644 (file)
@@ -745,9 +745,9 @@ Can I use some other browser than w3m to render my HTML-mails?
 @subsubheading Answer
 
 You've got the choice between @samp{shr}, @samp{w3m}, @samp{links},
-@samp{lynx} and @samp{html2text}.  Which one is used is specified in
-the variable @code{mm-text-html-renderer}, so if you want links to
-render your mail, say:
+and @samp{lynx}.  Which one is used is specified in the variable
+@code{mm-text-html-renderer}, so if you want links to render your
+mail, say:
 
 @example
 (setq mm-text-html-renderer 'links)
index baffe369c3e498686beb24b522300450eefadc5f..204c6c6e59829a49bb93ea416cc28806fccf1496 100644 (file)
@@ -9362,9 +9362,6 @@ Use @uref{https://almende.github.io/chap-links-library/, CHAP Links}.
 @item lynx
 Use @uref{https://lynx.browser.org/, Lynx}.
 
-@item html2text
-Use html2text---a simple @acronym{HTML} converter included with Gnus.
-
 @end table
 
 @item W D F
index 83d81fc12dcb047622d703bd70ffdada119713ed..6a948ce2ca8b96e2bca431ce3635784c986c9e78 100644 (file)
@@ -2553,13 +2553,6 @@ produces pretty nice output, and it highlights links. It renders
 @samp{&ndash;} and @samp{&reg;} okay. It sometimes fails to wrap lines
 properly. It always downloads remote images.
 @c -------------------------
-@cindex browser, @samp{html2text}
-@cindex @samp{html2text}
-@item @samp{html2text}
-The @samp{html2text} browser requires an external program. Some users
-have reported problems with it, such as filling the entire message as
-if it were one paragraph, or displaying chunks of raw HTML.
-@c -------------------------
 @cindex browser, @samp{links}
 @cindex @samp{links}
 @item @samp{links}
index 79217d3400176b9347fda97150f5891fb86b2794..1417ecdccc8ed04e40e0f91f267bc64715b1c1a0 100644 (file)
   (cond ((fboundp 'libxml-parse-html-region) 'shr)
        ((executable-find "w3m") 'gnus-w3m)
        ((executable-find "links") 'links)
-       ((executable-find "lynx") 'lynx)
-       ((locate-library "html2text") 'html2text))
+        ((executable-find "lynx") 'lynx))
   "Render of HTML contents.
 It is one of defined renderer types, or a rendering function.
 The defined renderer types are:
@@ -127,16 +126,14 @@ The defined renderer types are:
 `w3m': use emacs-w3m;
 `w3m-standalone': use plain w3m;
 `links': use links;
-`lynx': use lynx;
-`html2text': use html2text."
-  :version "27.1"
+`lynx': use lynx."
+  :version "29.1"
   :type '(choice (const shr)
                  (const gnus-w3m)
                  (const w3m :tag "emacs-w3m")
                 (const w3m-standalone :tag "standalone w3m" )
                 (const links)
                 (const lynx)
-                (const html2text)
                 (function))
   :group 'mime-display)