Function: markdown-ts--resolve-link-ref
markdown-ts--resolve-link-ref is a byte-compiled function defined in
markdown-ts-mode.el.gz.
Signature
(markdown-ts--resolve-link-ref LABEL)
Documentation
Resolve LABEL to a URL via link reference definitions.
LABEL should be the text without brackets. Matching is case-insensitive per CommonMark spec section 4.7.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts--resolve-link-ref (label)
"Resolve LABEL to a URL via link reference definitions.
LABEL should be the text without brackets. Matching is
case-insensitive per CommonMark spec section 4.7."
(alist-get (downcase label) (markdown-ts--link-ref-definitions)
nil nil #'equal))