Function: html2text

html2text is an autoloaded, interactive and byte-compiled function defined in html2text.el.gz.

Signature

(html2text)

Documentation

Convert HTML to plain text in the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/html2text.el.gz
;;
;; Main function
;;

;;;###autoload
(defun html2text ()
  "Convert HTML to plain text in the current buffer."
  (interactive)
  (save-excursion
    (let ((case-fold-search t)
	  (buffer-read-only))
      (html2text-remove-tags html2text-remove-tag-list)
      (html2text-format-tags)
      (html2text-remove-tags html2text-remove-tag-list2)
      (html2text-substitute)
      (html2text-format-single-elements)
      (html2text-fix-paragraphs))))