Function: article-wash-html

article-wash-html is an interactive and byte-compiled function defined in gnus-art.el.gz.

Signature

(article-wash-html)

Documentation

Format an HTML article.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun article-wash-html ()
  "Format an HTML article."
  (interactive nil gnus-article-mode)
  (let ((handles nil)
	(inhibit-read-only t))
    (when (gnus-buffer-live-p gnus-original-article-buffer)
      (with-current-buffer gnus-original-article-buffer
	(setq handles (mm-dissect-buffer t t))))
    (article-goto-body)
    (delete-region (point) (point-max))
    (mm-enable-multibyte)
    (mm-inline-text-html handles)))