Function: dom-text

dom-text is a byte-compiled function defined in dom.el.gz.

Signature

(dom-text NODE)

Documentation

Return all the text bits in the current node concatenated.

Source Code

;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defun dom-text (node)
  "Return all the text bits in the current node concatenated."
  (mapconcat #'identity (cl-remove-if-not #'stringp (dom-children node)) " "))