Function: html2text-substitute

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

Signature

(html2text-substitute)

Documentation

See the variable html2text-replace-list for documentation.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/html2text.el.gz
(defun html2text-substitute ()
  "See the variable `html2text-replace-list' for documentation."
  (interactive)
  (dolist (e html2text-replace-list)
    (goto-char (point-min))
    (let ((old-string (car e))
	  (new-string (cdr e)))
      (html2text-replace-string old-string new-string (point-min) (point-max)))))