Function: markdown-match-plain-uris

markdown-match-plain-uris is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-match-plain-uris LAST)

Documentation

Match plain URIs from point to LAST.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-match-plain-uris (last)
  "Match plain URIs from point to LAST."
  (when (markdown-match-inline-generic markdown-regex-uri last t)
    (goto-char (1+ (match-end 0)))))