emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] modify postamble in html export


From: pw
Subject: Re: [O] modify postamble in html export
Date: Fri, 20 Sep 2013 15:17:48 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130821 Icedove/17.0.8

You can override the whole thing by re-defining the `org-html-postable'
variable. Set it to a function which returns the string you want:

(defun my-org-html-postamble ()
  (format "Last update : %s" (format-time-string "%d %b %Y")))

(setq org-html-postamble 'my-org-html-postamble)

I didn't test that, but something like that ought to work.

Thanks!

I tried to paste your code into my .emacs and I received the following error when publishing :

"org-html--build-pre/postamble: Wrong number of arguments: (lambda nil (format "Last update : %s" (format-time-string "%d %b %Y"))), 1"

I don't know where is the problem. I tried then to do the same by modifying the variable "Org Export HTML Postamble Format". The default format is :

'(("en" "<p class=\"author\">Author: %a (%e)</p>\n<p class=\"date\">Date: %d</p>\n<p class=\"creator\">%c</p>\n<p class=\"xhtml-validation\">%v</p>"))

So I changed it to (with the idea to change the string format (%s) later if working) :

'(("en"<p class=\"date\">Last update: %s</p>"))

(which add to my .emacs : '(org-html-postamble-format (quote (("en" "<p class=\"date\">Last update: %s</p>"))))

But it does not change at all the postamble ""Created: 2013-09-19 jeu. 14:09"".

So I'm stuck!
pw





reply via email to

[Prev in Thread] Current Thread [Next in Thread]