From mboxrd@z Thu Jan 1 00:00:00 1970 From: "David A. Gershman" Subject: Re: Need help with HTML export custom postamble [SOLVED] Date: Mon, 31 Aug 2015 18:49:02 -0700 Message-ID: <55E5040E.7060508@dagertech.net> References: <55DE96C5.9000309@dagertech.net> <55E4F166.4050908@dagertech.net> <55E4F578.7040304@dagertech.net> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZWagS-000484-3b for emacs-orgmode@gnu.org; Mon, 31 Aug 2015 21:48:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZWagO-0002gG-Tz for emacs-orgmode@gnu.org; Mon, 31 Aug 2015 21:48:24 -0400 Received: from dagertech.net ([64.183.98.170]:55922 helo=mail.dagertech.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZWagO-0002gB-Mi for emacs-orgmode@gnu.org; Mon, 31 Aug 2015 21:48:20 -0400 Received: from [192.168.233.104] (unknown [192.168.176.200]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.dagertech.net (Postfix) with ESMTPSA id 04FD6A02CF for ; Mon, 31 Aug 2015 18:48:19 -0700 (PDT) In-Reply-To: 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 *argh* I remember that variation of postamble in my readings...didn't think to try it. Thank you!!! I attempted the export as well and it worked as expected. I appreciate your patience! FWIW, yes, I'm on the latest Org (8.3.1) and Emacs 24.4.1 (Debian Jessie). On 08/31/2015 06:36 PM, Thomas S. Dye wrote: > David A. Gershman writes: > >>> # Local Variables: >>> # org-html-postamble: t >>> # org-export-html-postamble-format: "Hello World" >>> # End: >> Either typing C-c C-c, or just opening the file will ask me about the >> variables. I answer 'y', but still get the default postamble. > Are you using an old Org mode, pre 8.0? I believe that's when the old > org-export-* variables lost the "export" part. > > At any rate, the problem appears to be that org-html-postamble-format > (in Org mode > 8.0) is an association list, not a string. > > This works for me using a recent Org mode: > > # Local Variables: > # org-html-postamble: t > # eval: (add-to-list 'org-html-postamble-format (quote ("en" "Hello World"))) > # End: > > At least, I get the cons cell added to the association list, and the > change is local to the buffer. I didn't try the export part. > > hth, > Tom >