From f9ae8f905e3a9446a3b9ef02282f4027e2f3b730 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 21 Aug 2025 19:25:27 -0500 Subject: don't add org html footnote separator at the end of exports --- modules/org-babel-config.el | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'modules') diff --git a/modules/org-babel-config.el b/modules/org-babel-config.el index 8bd7a6ed..0dcc3c3e 100644 --- a/modules/org-babel-config.el +++ b/modules/org-babel-config.el @@ -21,8 +21,8 @@ (setq org-src-window-setup 'current-window) ;; don't split window when source editing wih C-c ' (setq org-confirm-babel-evaluate nil) ;; just evaluate the source code (setq org-babel-default-header-args - (cons '(:tangle . "yes") - (assq-delete-all :tangle org-babel-default-header-args)))) ;; default header args for babel + (cons '(:tangle . "yes") + (assq-delete-all :tangle org-babel-default-header-args)))) ;; default header args for babel ;; ------------------- Babel Execution Confirmation Toggle ------------------- @@ -33,9 +33,9 @@ If invoked with C-u, toggle the setting." (interactive "P") (if (equal flag '(4)) - (setq org-confirm-babel-evaluate (not org-confirm-babel-evaluate))) + (setq org-confirm-babel-evaluate (not org-confirm-babel-evaluate))) (message "Babel evaluation confirmation is %s" - (if org-confirm-babel-evaluate "on" "off"))) + (if org-confirm-babel-evaluate "on" "off"))) ;; ---------------------------- Org Babel Languages ---------------------------- @@ -134,5 +134,8 @@ ;; requires ob-racket, not yet in repositories ;; (add-to-list 'org-structure-template-alist '("sicp" . "src racket :lang sicp")) +;; drop Org’s default footnote list at the end +(setq org-html-footnote-separator "") + (provide 'org-babel-config) ;;; org-babel-config.el ends here. -- cgit v1.2.3