Variable: org-link-plain-re

org-link-plain-re is a variable defined in ol.el.gz.

Value

"\\(?:\\<\\(?:\\(elisp\\|f\\(?:ile\\(?:\\+\\(?:\\(?:emac\\|sy\\)s\\)\\)?\\|tp\\)\\|h\\(?:elp\\(?:ful\\)?\\|ttps?\\)\\|mailto\\|news\\|shell\\)\\):\\(\\(?:[^][       \n()<>]\\|(\\(?:[^][      \n()<>]\\|([^][   \n()<>]*)\\)*)\\)+\\(?:[^[:punct:]        \n]\\|/\\|(\\(?:[^][    \n()<>]\\|([^][   \n()<>]*)\\)*)\\)\\)\\)"

Documentation

Matches plain link, without spaces.

Group 1 must contain the link type (i.e. https). Group 2 must contain the link path (i.e. //example.com). Used by org-element-link-parser.

Aliases

org-plain-link-re (obsolete since 9.3)

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defvar org-link-plain-re nil
  "Matches plain link, without spaces.
Group 1 must contain the link type (i.e. https).
Group 2 must contain the link path (i.e. //example.com).
Used by `org-element-link-parser'.")