Function: denote-keywords-combine
denote-keywords-combine is a byte-compiled function defined in
denote.el.
Signature
(denote-keywords-combine KEYWORDS)
Documentation
Combine KEYWORDS list of strings into a single string.
Keywords are separated by the underscore character, per the Denote file-naming scheme.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-keywords-combine (keywords)
"Combine KEYWORDS list of strings into a single string.
Keywords are separated by the underscore character, per the
Denote file-naming scheme."
(string-join keywords "_"))