Function: denote-link-markdown-follow

denote-link-markdown-follow is a byte-compiled function defined in denote.el.

Signature

(denote-link-markdown-follow LINK)

Documentation

Function for to act on Markdown link at point.

To be assigned to markdown-follow-link-functions.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
;; NOTE 2025-12-12: The `markdown-follow-link-functions' assumes that
;; the link of a specific format, but this is not good enough for us
;; because of the query links we support.  I think it is okay to
;; ignore LINK and just act on the link at point.
(defun denote-link-markdown-follow (_link)
  "Function for to act on Markdown link at point.
To be assigned to `markdown-follow-link-functions'."
  (denote-link-open-at-point))