summaryrefslogtreecommitdiff
path: root/lisp/dom.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-09-27 00:32:37 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-09-27 00:33:45 +0200
commit45727c4e6de7f6f6f61a4ae3589d5dd271ea8803 (patch)
treea853f0eadc96373bef56e7d870cf8ceb0df275cc /lisp/dom.el
parented9402f81907f5810d70fc421b456791d624ba1a (diff)
downloademacs-45727c4e6de7f6f6f61a4ae3589d5dd271ea8803.tar.gz
emacs-45727c4e6de7f6f6f61a4ae3589d5dd271ea8803.tar.bz2
emacs-45727c4e6de7f6f6f61a4ae3589d5dd271ea8803.zip
Add a new `dom-search' function
* doc/lispref/text.texi (Document Object Model): Document it. * lisp/dom.el (dom-search): New function.
Diffstat (limited to 'lisp/dom.el')
-rw-r--r--lisp/dom.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/lisp/dom.el b/lisp/dom.el
index d8c44339985..f01da5221b8 100644
--- a/lisp/dom.el
+++ b/lisp/dom.el
@@ -108,6 +108,18 @@ A name is a symbol like `td'."
(cons dom matches)
matches)))
+(defun dom-search (dom predicate)
+ "Return elements in DOM where PREDICATE is non-nil.
+PREDICATE is called with the node as its only parameter."
+ (let ((matches (cl-loop for child in (dom-children dom)
+ for matches = (and (not (stringp child))
+ (dom-search child predicate))
+ when matches
+ append matches)))
+ (if (funcall predicate dom)
+ (cons dom matches)
+ matches)))
+
(defun dom-strings (dom)
"Return elements in DOM that are strings."
(cl-loop for child in (dom-children dom)