branch: externals/denote commit 3c06d7d11938b1fb004e7e4f60b1a5e321f850d5 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Tweak front matter --- denote.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/denote.el b/denote.el index a7e9f6e4c9..a4addc0a4b 100644 --- a/denote.el +++ b/denote.el @@ -231,11 +231,11 @@ string." TITLE, DATE, KEYWORDS, FILENAME, ID are all strings which are provided by `denote-new-note'." (let ((kw (denote--keywords-capitalize keywords))) - (concat "#+title: " title "\n" - "#+date: " date "\n" - "#+keywords: " kw "\n" - "#+orig_name: " filename "\n" - "#+orig_id: " id "\n\n"))) + (concat "#+title: " title "\n" + "#+date: " date "\n" + "#+keywords: " kw "\n" + "#+filename: " filename "\n" + "#+identifier: " id "\n\n"))) (defun denote--path (title keywords) "Return path to new file with TITLE and KEYWORDS."