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()}}}
`----