Function: denote-extract-keywords-from-front-matter
denote-extract-keywords-from-front-matter is a byte-compiled function
defined in denote.el.
Signature
(denote-extract-keywords-from-front-matter KEYWORDS-STRING)
Documentation
Extract keywords list from front matter KEYWORDS-STRING.
Split KEYWORDS-STRING into 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-extract-keywords-from-front-matter (keywords-string)
"Extract keywords list from front matter KEYWORDS-STRING.
Split KEYWORDS-STRING into a list of strings.
Consult the `denote-file-types' for how this is used."
(split-string keywords-string "[:,\s]+" t "[][ \"']+"))