Function: markdown-link-p
markdown-link-p is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-link-p)
Documentation
Return non-nil when point is at a non-wiki link.
See markdown-wiki-link-p for more information.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-link-p ()
"Return non-nil when `point' is at a non-wiki link.
See `markdown-wiki-link-p' for more information."
(save-excursion
(let ((case-fold-search nil))
(when (and (not (markdown-wiki-link-p)) (not (markdown-code-block-at-point-p)))
(markdown-backward-to-link-start)
(or (thing-at-point-looking-at markdown-regex-link-inline)
(thing-at-point-looking-at markdown-regex-link-reference)
(thing-at-point-looking-at markdown-regex-uri)
(thing-at-point-looking-at markdown-regex-angle-uri))))))