From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Need help with HTML export custom postamble [SOLVED] Date: Tue, 01 Sep 2015 11:19:06 -0400 Message-ID: <87y4gqp3px.fsf@alphaville.usersys.redhat.com> References: <55DE96C5.9000309@dagertech.net> <55E4F166.4050908@dagertech.net> <55E4F578.7040304@dagertech.net> <55E5040E.7060508@dagertech.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33554) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZWnLE-0000uO-69 for emacs-orgmode@gnu.org; Tue, 01 Sep 2015 11:19:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZWnLA-0002vw-Qv for emacs-orgmode@gnu.org; Tue, 01 Sep 2015 11:19:20 -0400 Received: from plane.gmane.org ([80.91.229.3]:40525) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZWnLA-0002vs-KU for emacs-orgmode@gnu.org; Tue, 01 Sep 2015 11:19:16 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZWnL8-0003I0-6c for emacs-orgmode@gnu.org; Tue, 01 Sep 2015 17:19:14 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Sep 2015 17:19:14 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Sep 2015 17:19:14 +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 "David A. Gershman" writes: > *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"))) This is probably more complicated than it needs to be: if you are just setting the postamble, not appending to it, it would be preferable (and simpler) to avoid the eval: # org-html-postamble-format: (quote ("en" "Hello World")) >> # End: Nick