Function: denote-trim-whitespace-then-quotes

denote-trim-whitespace-then-quotes is a byte-compiled function defined in denote.el.

Signature

(denote-trim-whitespace-then-quotes S)

Documentation

Trim whitespace then quotes around string S.

This can be used in denote-file-types to format front mattter.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-trim-whitespace-then-quotes (s)
  "Trim whitespace then quotes around string S.
This can be used in `denote-file-types' to format front mattter."
  (denote--trim-quotes (denote-trim-whitespace s)))