diff options
Diffstat (limited to 'lisp/seam-export.el')
-rw-r--r-- | lisp/seam-export.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/seam-export.el b/lisp/seam-export.el index 71a7921..b5d7046 100644 --- a/lisp/seam-export.el +++ b/lisp/seam-export.el @@ -239,7 +239,7 @@ notes)." (defun seam-export--note-to-html (note-file html-directory) (seam-ensure-directory-exists html-directory) (let ((html-file (file-name-concat html-directory - (concat (file-name-base note-file) ".html"))) + (concat (seam-get-slug-from-file-name note-file) ".html"))) (modified (file-attribute-modification-time (file-attributes note-file)))) (with-temp-buffer |