diff options
author | Sacha Chua <sacha@sachachua.com> | 2023-10-10 10:14:48 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2023-10-10 10:14:48 -0400 |
commit | d8881dbc1333a68644b5d9808a7471ba9ab25194 (patch) | |
tree | 2de0783b82e5fa08176ea29f5cfd1509830813a0 /emacsconf-pad.el | |
parent | 50879322aaaf5ac53b5fdeeb15aaf7cb53fea485 (diff) | |
download | emacsconf-el-d8881dbc1333a68644b5d9808a7471ba9ab25194.tar.xz emacsconf-el-d8881dbc1333a68644b5d9808a7471ba9ab25194.zip |
rename VIDEO_SLUG to FILE_PREFIX
Diffstat (limited to '')
-rw-r--r-- | emacsconf-pad.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacsconf-pad.el b/emacsconf-pad.el index 243f973..152b636 100644 --- a/emacsconf-pad.el +++ b/emacsconf-pad.el @@ -794,14 +794,14 @@ This page is for easy reference and recording. Please make sure any changes here (defun emacsconf-pad-backup-talk (talk) (interactive (list (emacsconf-complete-talk-info))) - (with-temp-file (expand-file-name (concat (plist-get talk :video-slug) "--pad.html") + (with-temp-file (expand-file-name (concat (plist-get talk :file-prefix) "--pad.html") emacsconf-cache-dir) (insert (emacsconf-pad-get-html (emacsconf-pad-id talk)))) (call-process "pandoc" nil nil nil "-o" - (expand-file-name (concat (plist-get talk :video-slug) "--pad.md") + (expand-file-name (concat (plist-get talk :file-prefix) "--pad.md") emacsconf-cache-dir) - (expand-file-name (concat (plist-get talk :video-slug) "--pad.html") + (expand-file-name (concat (plist-get talk :file-prefix) "--pad.html") emacsconf-cache-dir))) (defun emacsconf-pad-backup-talks () |