I can add hyperlinks to webpages in the docstring. But is it possible to do the same when writing text in a named buffer?
(defvar msg "URL `https://www.gnu.org/proprietary/proprietary.html'")
(get-buffer-create bufname)
(insert msg)
I can add hyperlinks to webpages in the docstring. But is it possible to do the same when writing text in a named buffer?
(defvar msg "URL `https://www.gnu.org/proprietary/proprietary.html'")
(get-buffer-create bufname)
(insert msg)
Package hyperbole automatically turns plain-text URLs into hyperlinks everywhere in Emacs.
(with-current-buffer some-buffer (org-mode))wheresome-bufferis the buffer you created. – NickD Jul 29 '22 at 00:35(with-current-bufferto make a new buffer? I did as suggested and the major mode took effect as instructed. – Dilna Jul 29 '22 at 00:48