Function: nnrss-get-rsslinks

nnrss-get-rsslinks is a byte-compiled function defined in nnrss.el.gz.

Signature

(nnrss-get-rsslinks DATA)

Documentation

Extract the <link> elements that are links to RSS from the parsed data.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnrss.el.gz
(defun nnrss-get-rsslinks (data)
  "Extract the <link> elements that are links to RSS from the parsed data."
  (delq nil (mapcar
	     (lambda (el)
	       (if (nnrss-rsslink-p el) el))
	     (nnrss-find-el 'link data))))