Variable: denote-yaml-front-matter

denote-yaml-front-matter is a variable defined in denote.el.

Value

"---\ntitle:      %s\ndate:       %s\ntags:       %s\nidentifier: %s\nsignature:  %s\n---\n\n"

Documentation

YAML (Markdown) front matter.

It is passed to format with arguments TITLE, DATE, KEYWORDS, ID. Advanced users are advised to consult Info node (denote) Change the front matter format.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defvar denote-yaml-front-matter
  "---
title:      %s
date:       %s
tags:       %s
identifier: %s
signature:  %s
---\n\n"
  "YAML (Markdown) front matter.
It is passed to `format' with arguments TITLE, DATE, KEYWORDS,
ID.  Advanced users are advised to consult Info node `(denote)
Change the front matter format'.")