From f76fddd9cda6fedbd5ca78813748158853e9621f Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Thu, 6 Feb 2020 00:43:57 +0800 Subject: [PATCH] fix graph construction --- org-roam.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-roam.el b/org-roam.el index 1543bd5..6b656e8 100644 --- a/org-roam.el +++ b/org-roam.el @@ -275,7 +275,7 @@ displaying information for the correct file." (lambda (link-id backlinks) (maphash (lambda (backlink-id content) - (insert (format " %s -> %s;\n" backlink-id link-id))) + (insert (format " \"%s\" -> \"%s\";\n" backlink-id link-id))) backlinks)) org-roam-cache) (insert "}")