From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Frankel Subject: Re: org-html-postamble-format and #+DATE: specification in 8.0pre Date: Fri, 05 Apr 2013 09:22:34 -0400 Message-ID: References: <87y5d6z46f.fsf@duenenhof-wilhelm.de> <87hajnzagn.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47069) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UO6bK-0001vm-S5 for emacs-orgmode@gnu.org; Fri, 05 Apr 2013 09:22:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UO6bC-0005mZ-H5 for emacs-orgmode@gnu.org; Fri, 05 Apr 2013 09:22:42 -0400 Received: from [204.62.15.78] (port=39641 helo=mail.rickster.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UO6bC-0005mK-DW for emacs-orgmode@gnu.org; Fri, 05 Apr 2013 09:22:34 -0400 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 On 05.04.2013 03:17, Alan Schmitt wrote: > I have a more serious issue: it seems that '%d' is no longer taken > into > account. To reproduce, try exporting the following: > > #+BEGIN_SRC org > # -*- org-export-allow-bind-keywords: t -*- > > #+TITLE: Testing the date > #+BIND: org-html-postamble-format (("en" "Test %d %a")) > > Hello World > #+END_SRC > Try the DATE header argument. Also, if you only want to bind the postamble for the current buffer in only one language, you can bypass the postamble-format alist: ,---- | #+TITLE: Test postamble | #+DATE: {{{modification-time( %Y-%m-%d)}}} | #+BIND: org-html-postamble "By %a on %d" | | * File was updated on {{{modification-time( %Y-%m-%d)}}} | - the header date is: {{{date()}}} `----