Function: denote-sluggify-title
denote-sluggify-title is a byte-compiled function defined in
denote.el.
Signature
(denote-sluggify-title STR)
Documentation
Make STR an appropriate slug for title.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-sluggify-title (str)
"Make STR an appropriate slug for title."
(downcase
(denote-slug-hyphenate
(replace-regexp-in-string "[][{}!@#$%^&*()+'\"?,.\|;:~`‘’“”/=]*" "" str))))