Xin <zaris...@gmail.com> writes: > Is there any way to globally remove the postamble (author, created date, > etc..) > of exported html from org-mode? > > I tried (setq org-html-postamble nil) in my init.el, but it doesn't work. >
Try doing that *after* ox-html is loaded: (eval-after-load "ox-html" (setq org-html-postamble nil)) -- Nick