Variable: gnus-treat-emphasize

gnus-treat-emphasize is a customizable variable defined in gnus-art.el.gz.

Value

(and 50000
     (not
      (typep "text/html")))

Documentation

Emphasize text.

Valid values are nil, t, head, first, last, an integer or a predicate. See Info node (gnus)Customizing Articles.

This variable was added, or its default value changed, in Emacs 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defcustom gnus-treat-emphasize '(and 50000
                                      (not (typep "text/html")))
  "Emphasize text.
Valid values are nil, t, `head', `first', `last', an integer or a
predicate.  See Info node `(gnus)Customizing Articles'."
  :group 'gnus-article-treat
  :link '(custom-manual "(gnus)Customizing Articles")
  :type gnus-article-treat-custom
  :version "29.1")