Function: gnus-article-hide
gnus-article-hide is an autoloaded, interactive and byte-compiled
function defined in gnus-art.el.gz.
Signature
(gnus-article-hide &optional ARG FORCE)
Documentation
Hide all the gruft in the current article.
This means that signatures, cited text and (some) headers will be hidden. If given a prefix, show the hidden text instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-hide (&optional arg force)
"Hide all the gruft in the current article.
This means that signatures, cited text and (some) headers will be
hidden.
If given a prefix, show the hidden text instead."
(interactive (append (gnus-article-hidden-arg) (list 'force))
gnus-article-mode gnus-summary-mode)
(gnus-with-article-buffer
(article-hide-headers arg)
(article-hide-list-identifiers)
(gnus-article-hide-citation-maybe arg force)
(article-hide-signature arg)))