Function: nxml-hide-all-text-content
nxml-hide-all-text-content is an interactive and byte-compiled
function defined in nxml-outln.el.gz.
Signature
(nxml-hide-all-text-content)
Documentation
Hide all text content in the buffer.
Anything that is in a section but is not a heading will be hidden.
The visibility of headings at any level will not be changed. See the
variable nxml-section-element-name-regexp for more details on how to
customize which elements are recognized as sections and headings.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/nxml-outln.el.gz
(defun nxml-hide-all-text-content ()
"Hide all text content in the buffer.
Anything that is in a section but is not a heading will be hidden.
The visibility of headings at any level will not be changed. See the
variable `nxml-section-element-name-regexp' for more details on how to
customize which elements are recognized as sections and headings."
(interactive)
(nxml-transform-buffer-outline '((nil . t))))