Function: org-roam-link-replace-all
org-roam-link-replace-all is an interactive and byte-compiled function
defined in org-roam-node.el.
Signature
(org-roam-link-replace-all)
Documentation
Replace all "roam:" links in buffer with "id:" links.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-node.el
(defun org-roam-link-replace-all ()
"Replace all \"roam:\" links in buffer with \"id:\" links."
(interactive)
(org-with-point-at 1
(while (search-forward (concat "[[" org-roam-link-type ":") nil t)
(org-roam-link-replace-at-point))))