Function: nxml-show-direct-text-content
nxml-show-direct-text-content is an interactive and byte-compiled
function defined in nxml-outln.el.gz.
Signature
(nxml-show-direct-text-content)
Documentation
Show the text content that is directly part of the section containing point.
Each subsection will be shown according to its individual state, which
will not be changed. The section containing point is the innermost
section that contains the character following point. 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-show-direct-text-content ()
"Show the text content that is directly part of the section containing point.
Each subsection will be shown according to its individual state, which
will not be changed. The section containing point is the innermost
section that contains the character following point. 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-outline-pre-adjust-point)
(nxml-set-outline-state (nxml-section-start-position) nil)
(nxml-refresh-outline)
(nxml-outline-adjust-point))