Function: denote-format-keywords-for-org-front-matter

denote-format-keywords-for-org-front-matter is a byte-compiled function defined in denote.el.

Signature

(denote-format-keywords-for-org-front-matter KEYWORDS)

Documentation

Format front matter KEYWORDS for org file type.

KEYWORDS is a list of strings. Consult the denote-file-types for how this is used.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-format-keywords-for-org-front-matter (keywords)
  "Format front matter KEYWORDS for org file type.
KEYWORDS is a list of strings.  Consult the `denote-file-types'
for how this is used."
  (if keywords
      (format ":%s:" (string-join keywords ":"))
    ""))