diff options
author | Spencer Williams <spnw@plexwave.org> | 2025-07-06 18:00:09 -0400 |
---|---|---|
committer | Spencer Williams <spnw@plexwave.org> | 2025-07-06 20:10:34 -0400 |
commit | f4b1e329fc6e3878bfff648649f5d654b1f2808c (patch) | |
tree | 4aa77c45e4ed6a18038ec023373e2ab1f5c6a167 /lisp/seam-export.el | |
parent | 92b8d2a10c52fbaef681fea6b97a7dd20f642a8f (diff) |
Aggressively delete old HTML files on export
This is to avoid keeping around old HTML files that are no longer
wanted after changing seam-export-alist.
Diffstat (limited to 'lisp/seam-export.el')
-rw-r--r-- | lisp/seam-export.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/seam-export.el b/lisp/seam-export.el index d0f59cc..71a7921 100644 --- a/lisp/seam-export.el +++ b/lisp/seam-export.el @@ -314,6 +314,7 @@ notes)." (error "Nothing to export. Please configure `seam-export-alist'.")) (dolist (dir (seam-note-subdirectories)) (dolist (file (directory-files dir t seam-note-file-regexp)) + (seam-delete-html-files-for-note file) (seam-export-note file)))) (provide 'seam-export) |