Variable: markdown-follow-link-functions
markdown-follow-link-functions is a variable defined in
markdown-mode.el.
Value
nil
Documentation
Functions used to follow a link.
Each function is called with one argument, the link's URL. It should return non-nil if it followed the link, or nil if not. Functions are called in order until one of them returns non-nil; otherwise the default link-following function is used.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defvar markdown-follow-link-functions nil
"Functions used to follow a link.
Each function is called with one argument, the link's URL. It
should return non-nil if it followed the link, or nil if not.
Functions are called in order until one of them returns non-nil;
otherwise the default link-following function is used.")