branch: externals/denote commit 1a8b57a9a845897a502d4e85126dcbca0a6924e9 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Fix const in denote-file-type (extends 2bc5df6) --- denote.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/denote.el b/denote.el index f6ab12da7a..6bc4c23da1 100644 --- a/denote.el +++ b/denote.el @@ -126,7 +126,7 @@ When the value is `text', the file type is that of Text mode. Any other non-nil value is the same as the default." :type '(choice (const :tag "Org mode (default)" nil) - (const :tag "Markdown" markdown-yml) + (const :tag "Markdown (YAML front matter)" markdown-yaml) (const :tag "Plain text" text)) :group 'denote)