Variable: markdown-regex-uri
markdown-regex-uri is a variable defined in markdown-mode.el.
Value
"\\(\\(?:acap\\|cid\\|da\\(?:ta\\|v\\)\\|f\\(?:ax\\|ile\\|tp\\)\\|g\\(?:eo\\|opher\\)\\|https?\\|imap\\|ldap\\|m\\(?:ailto\\|essage\\|id\\|odem\\)\\|n\\(?:ews\\|fs\\|ntp\\)\\|p\\(?:op\\|rospero\\)\\|rtsp\\|s\\(?:ervice\\|ip\\)\\|t\\(?:el\\(?:net\\)?\\|ip\\)\\|urn\\|vemmi\\|wais\\):[^] \n
<>; ]+\\)"
Documentation
Regular expression for matching inline URIs.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-uri
(concat "\\(" (regexp-opt markdown-uri-types) ":[^]\t\n\r<>; ]+\\)")
"Regular expression for matching inline URIs.")