Function: gnus-article-toggle-fonts

gnus-article-toggle-fonts is an autoloaded, interactive and byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-article-toggle-fonts)

Documentation

Toggle the use of proportional fonts for HTML articles.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-toggle-fonts ()
  "Toggle the use of proportional fonts for HTML articles."
  (interactive nil gnus-article-mode gnus-summary-mode)
  (gnus-with-article-buffer
    (when (eq mm-text-html-renderer 'shr)
      (setq-local shr-use-fonts (not shr-use-fonts))
      (gnus-summary-show-article))))