Function: markdown-follow-link-p
markdown-follow-link-p is a byte-compiled function defined in
hibtypes.el.
Signature
(markdown-follow-link-p)
Documentation
Jump between reference links and definitions or footnote markers and text.
Return t if jump and nil otherwise.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hibtypes.el
;;; ========================================================================
;;; Displays in-file Markdown link referents.
;;; ========================================================================
(defun markdown-follow-link-p ()
"Jump between reference links and definitions or footnote markers and text.
Return t if jump and nil otherwise."
(cond
;; Footnote definition
((markdown-footnote-text-positions)
(markdown-footnote-return)
t)
;; Footnote marker
((markdown-footnote-marker-positions)
(markdown-footnote-goto-text)
t)
;; Reference link
((thing-at-point-looking-at markdown-regex-link-reference)
(markdown-reference-goto-definition)
t)
;; Reference definition
((thing-at-point-looking-at markdown-regex-reference-definition)
(markdown-reference-goto-link (match-string-no-properties 2))
t)))