From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: HTML export and blogging to blogger.com Date: Thu, 11 Nov 2010 17:50:06 -0500 Message-ID: <13856.1289515806@gamaville.dokosmarshall.org> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=40706 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGfyI-0007Tr-34 for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 17:50:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGfyG-0007vD-LL for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 17:50:21 -0500 Received: from vms173013pub.verizon.net ([206.46.173.13]:63252) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGfyG-0007v2-I3 for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 17:50:20 -0500 Received: from gamaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173013.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LBQ00529SRIXXA0@vms173013.mailsrvcs.net> for emacs-orgmode@gnu.org; Thu, 11 Nov 2010 16:50:06 -0600 (CST) In-reply-to: Message from Samuel Wales of "Thu, 11 Nov 2010 15:05:23 MST." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Samuel Wales Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Samuel Wales wrote: > ... > Also, org put the date (in two places) and the author in the > generated HTML code. I don't want to export those, not even > in the code. I looked for org-export-with- variables and > did not find ones that matched. > > How do I prevent their export? > The following only takes care of the postamble author/date/email/creator insertions, but maybe that's enough? That's one place where a date is inserted, but I'm not sure where the other one is: the information perhaps? In any case, inserting --8<---------------cut here---------------start------------->8--- #+BIND: org-export-html-auto-postamble nil --8<---------------cut here---------------end--------------->8--- in the file, or setting :auto-postamble to nil in the publishing project alist, will not export the standard postamble at all. Or you can use the BIND mechanism with org-export-author-info (and subordinately org-export-email-info) org-export-time-stamp-file org-export-creator-info org-export-html-validation-link org-export-html-with-timestamp for finer control. HTH, Nick