Function: org-link-decode

org-link-decode is a byte-compiled function defined in ol.el.gz.

Signature

(org-link-decode S)

Documentation

Decode percent-encoded parts in string S.

E.g. "%C3%B6" becomes the German o-Umlaut.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defun org-link-decode (s)
  "Decode percent-encoded parts in string S.
E.g. \"%C3%B6\" becomes the German o-Umlaut."
  (replace-regexp-in-string "\\(%[0-9A-Za-z]\\{2\\}\\)+"
			    #'org-link--decode-compound s t t))