Function: org-export-link-remote-p

org-export-link-remote-p is a byte-compiled function defined in ox.el.gz.

Signature

(org-export-link-remote-p LINK)

Documentation

Returns non-nil if the link refers to a remote resource.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export-link-remote-p (link)
  "Returns non-nil if the link refers to a remote resource."
  (or (member (org-element-property :type link) '("http" "https" "ftp"))
      (and (string= (org-element-property :type link) "file")
           (file-remote-p (org-element-property :path link)))))