summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-21 19:25:27 -0500
committerCraig Jennings <c@cjennings.net>2025-08-21 19:25:27 -0500
commitf9ae8f905e3a9446a3b9ef02282f4027e2f3b730 (patch)
tree6ed5103ca15f78226d929e1b15fe7bb259aa322b /modules
parentd8ab62d791846870452438882c69ac84d35d58c7 (diff)
downloaddotemacs-f9ae8f905e3a9446a3b9ef02282f4027e2f3b730.tar.gz
dotemacs-f9ae8f905e3a9446a3b9ef02282f4027e2f3b730.zip
don't add org html footnote separator at the end of exports
Diffstat (limited to 'modules')
-rw-r--r--modules/org-babel-config.el11
1 files changed, 7 insertions, 4 deletions
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.