Function: markdown-match-angle-uris
markdown-match-angle-uris is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-match-angle-uris LAST)
Documentation
Match angle bracket URIs from point to LAST.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-match-angle-uris (last)
"Match angle bracket URIs from point to LAST."
(when (markdown-match-inline-generic markdown-regex-angle-uri last)
(goto-char (1+ (match-end 0)))))