emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/denote f6501c6d42 7/9: Fix regexp for denote--{title, k


From: ELPA Syncer
Subject: [elpa] externals/denote f6501c6d42 7/9: Fix regexp for denote--{title, keywords}-key-regexp
Date: Sat, 13 Aug 2022 03:57:30 -0400 (EDT)

branch: externals/denote
commit f6501c6d4275876fd9dd4fb6620ee849eec74d68
Author: Abin Simon <mail@meain.io>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Fix regexp for denote--{title,keywords}-key-regexp
---
 denote.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/denote.el b/denote.el
index 4ba63759b3..b376ee74eb 100644
--- a/denote.el
+++ b/denote.el
@@ -575,7 +575,7 @@ output is sorted with `string-lessp'."
   (cond ((or (eq file-type 'markdown-yaml) (eq file-type 'text))
          "^title\\s-*:")
         ((eq file-type 'org)
-         "^#+title\\s-*:")
+         "^#\\+title\\s-*:")
         ((eq file-type 'markdown-toml)
          "^title\\s-*=")))
 
@@ -584,7 +584,7 @@ output is sorted with `string-lessp'."
   (cond ((or (eq file-type 'markdown-yaml) (eq file-type 'text))
          "^tags\\s-*:")
         ((eq file-type 'org)
-         "^#+filetags\\s-*:")
+         "^#\\+filetags\\s-*:")
         ((eq file-type 'markdown-toml)
          "^tags\\s-*=")))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]