[Misc] Exporter no longer generates backup files

This commit is contained in:
Lucien Cartier-Tilet 2021-11-28 22:47:27 +01:00
parent 2713daceda
commit 35ef17c7d0
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 5 additions and 7 deletions

View File

@ -10,21 +10,19 @@
(package-install 'htmlize)
(setq org-confirm-babel-evaluate nil
org-html-validation-link nil)
org-html-validation-link nil
make-backup-files nil)
(defun export-and-clean (directory)
(progn (mapc (lambda (file)
(progn (message (concat "====================\n"
(progn (message (concat "=====================\n"
"Exporting "
file
"\n"
"====================\n"))
"=====================\n"))
(with-current-buffer (find-file file)
(org-html-export-to-html))))
(directory-files directory t (regexp-quote ".org")))
(mapc (lambda (file)
(delete-file file nil))
(directory-files directory t (regexp-quote "html~")))))
(directory-files directory t (regexp-quote ".org")))))
(dolist (dir '("org/config/" "org/config/Deprecated/" "org/config/WIP"))
(export-and-clean dir))