From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brady Trainor Subject: Re: keyword :html-postamble-format seems to not be used Date: Thu, 03 May 2018 15:08:16 -0700 Message-ID: <20180503220817.A0A85E4474@mailuser.nyi.internal> References: <20180503215608.5612AE4E8F@mailuser.nyi.internal> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fEMOj-0007f8-Nr for emacs-orgmode@gnu.org; Thu, 03 May 2018 18:08:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fEMOg-000240-Tq for emacs-orgmode@gnu.org; Thu, 03 May 2018 18:08:21 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:58953) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fEMOg-00022m-No for emacs-orgmode@gnu.org; Thu, 03 May 2018 18:08:18 -0400 In-reply-to: <20180503215608.5612AE4E8F@mailuser.nyi.internal> 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" To: org-mode Brady Trainor writes: > [...] However, since `:html-postamble` accepts a function, I found it straightforward to take a bit from the source code and write the following, #+begin_src emacs-lisp :html-postamble (lambda (info) (format "

%s: %s

\n" (org-html--translate "Created" info) (format-time-string (plist-get info :html-metadata-timestamp-format)))) #+end_src -- Brady