Function: dom-non-text-children

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

Signature

(dom-non-text-children NODE)

Documentation

Return all non-text-node children of NODE.

Source Code

;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defun dom-non-text-children (node)
  "Return all non-text-node children of NODE."
  (cl-loop for child in (dom-children node)
	   unless (stringp child)
	   collect child))