From 917a325dd9778cd06a35e12f262963f75909d646 Mon Sep 17 00:00:00 2001 From: nth Date: Sun, 24 Jul 2022 01:47:08 +1000 Subject: [PATCH] (fix): links not displayed properly in org-roam-buffer (#2236) Closes #2228. --- org-roam-utils.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org-roam-utils.el b/org-roam-utils.el index b87753b..7b00c32 100644 --- a/org-roam-utils.el +++ b/org-roam-utils.el @@ -227,7 +227,8 @@ Like `org-fontify-like-in-org-mode', but supports `org-ref'." ;; `org-fontify-like-in-org-mode' here (with-temp-buffer (insert s) - (let ((org-ref-buffer-hacked t)) + (let ((org-ref-buffer-hacked t) + (org-fold-core-style 'overlays)) (org-mode) (org-font-lock-ensure) (buffer-string))))