Function: hpath:www-p
hpath:www-p is a byte-compiled function defined in hpath.el.
Signature
(hpath:www-p PATH)
Documentation
Return PATH iff PATH is a world-wide-web link reference, else nil.
The PATH may lack a leading protocol; it will be inferred.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defun hpath:www-p (path)
"Return PATH iff PATH is a world-wide-web link reference, else nil.
The PATH may lack a leading protocol; it will be inferred."
(and (stringp path) (hpath:url-p path) path))