From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: how to disable timestamp html export Date: Wed, 05 Jun 2013 12:44:11 -0400 Message-ID: <87hahco6ck.fsf@pierrot.dokosmarshall.org> References: <20130605160600.GA9699@osiux.com.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56845) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkGp5-0000KZ-E3 for emacs-orgmode@gnu.org; Wed, 05 Jun 2013 12:44:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UkGoz-0001KT-Vi for emacs-orgmode@gnu.org; Wed, 05 Jun 2013 12:44:31 -0400 Received: from plane.gmane.org ([80.91.229.3]:44232) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkGoz-0001KF-Q2 for emacs-orgmode@gnu.org; Wed, 05 Jun 2013 12:44:25 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UkGoy-0003b8-IS for emacs-orgmode@gnu.org; Wed, 05 Jun 2013 18:44:24 +0200 Received: from pool-108-7-96-134.bstnma.fios.verizon.net ([108.7.96.134]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 05 Jun 2013 18:44:24 +0200 Received: from ndokos by pool-108-7-96-134.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 05 Jun 2013 18:44:24 +0200 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 OSiUX writes: > When export using org-publish-project, > Org add a comment with timestamp in HTML: > > # git diff > > > > viewing two years of orgmode with gnuplot > - > + > > > > In my .emacs, I have: > > (setq org-publish-project-alist > (quote (("osiux-blog-org" > ...others...options... > :with-timestamps nil > > How I can disable this feature? > To do it globally, customize org-export-time-stamp-file and set it to nil. Per file, you can use an option: --8<---------------cut here---------------start------------->8--- #+OPTIONS: timestamp:nil --8<---------------cut here---------------end--------------->8--- or through a local variable by adding this at the *end* of the file: --8<---------------cut here---------------start------------->8--- # Local Variables: # org-export-time-stamp-file: nil # End: --8<---------------cut here---------------end--------------->8--- You will need to close and reopen the file in this case, for it to take effect. OTOH, it's just a comment: org is trying to be helpful and tell you when the html file was produced. Why do you want to get rid of it? At some point, it might save you hours of debugging (ok, rhetorical exaggeration perhaps, but still...) -- Nick