Function: eww-toggle-fonts

eww-toggle-fonts is an interactive and byte-compiled function defined in eww.el.gz.

Signature

(eww-toggle-fonts)

Documentation

Toggle whether to use monospaced or font-enabled layouts.

Probably introduced at or before Emacs version 25.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-toggle-fonts ()
  "Toggle whether to use monospaced or font-enabled layouts."
  (interactive nil eww-mode)
  (setq shr-use-fonts (not shr-use-fonts))
  (eww-reload)
  (message "Proportional fonts are now %s"
           (if shr-use-fonts "on" "off")))