Variable: denote-org-link-in-context-regexp

denote-org-link-in-context-regexp is a variable defined in denote.el.

Value

"\\[\\[denote:\\(?1:[^][]*?\\)\\(?:::.*\\)?]\\[\\(?2:.*?\\)]]"

Documentation

Regexp to match an Org link in its context.

The format of such links is denote-org-link-format.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defvar denote-org-link-in-context-regexp
  (concat "\\[\\[" "denote:"
          "\\(?1:[^][]*?\\)"
          "\\(?:::.*\\)?" "]"
          "\\[" "\\(?2:" ".*?" "\\)" "]]")
  "Regexp to match an Org link in its context.
The format of such links is `denote-org-link-format'.")