branch: externals/denote commit 1f87a456c54784b84c6bf00d54e188f30772740c Author: Damien Cassou <dam...@cassou.me> Commit: Protesilaos Stavrou <i...@protesilaos.com>
denote--punctuation-regexp: Forbid usage of slash in filenames --- denote.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/denote.el b/denote.el index 222af06924..75b9bd9db9 100644 --- a/denote.el +++ b/denote.el @@ -227,7 +227,7 @@ is suspended: we use whatever the user wants." (concat denote--file-title-regexp "\\([0-9A-Za-z_-]*\\)\\(\\.?.*\\)") "Regular expression to match the entire file name'.") -(defconst denote--punctuation-regexp "[][{}!@#$%^&*()_=+'\"?,.\|;:~`‘’“”]*" +(defconst denote--punctuation-regexp "[][{}!@#$%^&*()_=+'\"?,.\|;:~`‘’“”/]*" "Regular expression of punctionation that should be removed. We consider those characters illigal for our purposes.")