From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xin Subject: Re: Remove postamble in exported html from org-mode Date: Wed, 30 Dec 2015 08:43:01 +0000 (UTC) Message-ID: References: <871ta4o5e1.fsf@pierrot.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41792) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aECLp-0001z1-JM for emacs-orgmode@gnu.org; Wed, 30 Dec 2015 03:43:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aECLm-0000LP-Dw for emacs-orgmode@gnu.org; Wed, 30 Dec 2015 03:43:21 -0500 Received: from plane.gmane.org ([80.91.229.3]:60712) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aECLm-0000LL-6x for emacs-orgmode@gnu.org; Wed, 30 Dec 2015 03:43:18 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aECLj-0007Gn-Kg for emacs-orgmode@gnu.org; Wed, 30 Dec 2015 09:43:16 +0100 Received: from rescomp-13-264473.stanford.edu ([128.12.130.163]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 30 Dec 2015 09:43:15 +0100 Received: from zariskij by rescomp-13-264473.stanford.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 30 Dec 2015 09:43:15 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Nick Dokos gmail.com> writes: > > Xin 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)) > Thanks for the reply. But it doesn't seem to work either. By the way, manually adding #+OPTIONS: html-postamble:nil to each org file does work. Just everything I tried in init.el has no effect at all (the value of org- html-postamble is indeed nil when I evaluate it).