Function: org-roam-unlinked-references-preview-line
org-roam-unlinked-references-preview-line is a byte-compiled function
defined in org-roam-mode.el.
Signature
(org-roam-unlinked-references-preview-line FILE ROW)
Documentation
Return the preview line from FILE.
This is the ROW within FILE.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-mode.el
(defun org-roam-unlinked-references-preview-line (file row)
"Return the preview line from FILE.
This is the ROW within FILE."
(with-temp-buffer
(insert-file-contents file)
(forward-line (1- row))
(buffer-substring-no-properties
(save-excursion
(beginning-of-line)
(point))
(save-excursion
(end-of-line)
(point)))))