From 377d39bfff5378f9f7afdf61c2be167705514165 Mon Sep 17 00:00:00 2001 From: Mykhailo Shevchuk Date: Tue, 4 May 2021 06:28:49 +0200 Subject: [PATCH] update org-roam-capture-tempates docstring (#1509) Remove quotes before heading lists in olp examples, they do not belong there. Quoting these lists will lead to an error. --- org-roam-capture.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org-roam-capture.el b/org-roam-capture.el index 5f78e60..df0bfab 100644 --- a/org-roam-capture.el +++ b/org-roam-capture.el @@ -122,11 +122,11 @@ the following options: The file will be created, prescribed an ID, and head content will be inserted into the file. - (file+olp \"path/to/file\" '(\"h1\" \"h2\")) + (file+olp \"path/to/file\" (\"h1\" \"h2\")) The file will be created, prescribed an ID. The OLP (h1, h2) will be created, and the point placed after. - (file+head+olp \"path/to/file\" \"head content\" '(\"h1\" \"h2\")) + (file+head+olp \"path/to/file\" \"head content\" (\"h1\" \"h2\")) The file will be created, prescribed an ID. Head content will be inserted at the start of the file. The OLP (h1, h2) will be created, and the point placed after.