branch: elpa/markdown-mode commit afd7f322adc8d01c2fc5dc3314b9122371233a2a Author: Shohei YOSHIDA <syo...@gmail.com> Commit: Shohei YOSHIDA <syo...@gmail.com>
Add 'geo' scheme to URL scheme list --- CHANGES.md | 2 ++ markdown-mode.el | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index d202c83910..7c62a7c0d0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -16,6 +16,7 @@ - Support newer version Eldoc ships with Emacs 28. - Don't spell-check against pandoc references. [GH-572][] - Support tree-sitter-based major modes used by Emacs 29. + - Highlight "geo" URI scheme [GH-739][] * Bug fixes: - Don't override table faces by link faces [GH-716][] @@ -27,6 +28,7 @@ [gh-716]: https://github.com/jrblevin/markdown-mode/issues/716 [gh-731]: https://github.com/jrblevin/markdown-mode/issues/731 [gh-737]: https://github.com/jrblevin/markdown-mode/issues/737 + [gh-739]: https://github.com/jrblevin/markdown-mode/issues/739 # Markdown Mode 2.5 diff --git a/markdown-mode.el b/markdown-mode.el index 26581014ab..9ad211a017 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -275,7 +275,7 @@ cause lag when typing on slower machines." (defcustom markdown-uri-types '("acap" "cid" "data" "dav" "fax" "file" "ftp" - "gopher" "http" "https" "imap" "ldap" "mailto" + "geo" "gopher" "http" "https" "imap" "ldap" "mailto" "mid" "message" "modem" "news" "nfs" "nntp" "pop" "prospero" "rtsp" "service" "sip" "tel" "telnet" "tip" "urn" "vemmi" "wais")