emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] Customizing Timestamps in html Export.


From: Ian Barton
Subject: Re: [O] Customizing Timestamps in html Export.
Date: Wed, 03 Dec 2014 09:03:12 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0

On 02/12/14 09:45, Nicolas Goaziou wrote:
Hello,

Ian Barton <address@hidden> writes:

However, the using the minimal.el:

#+begin_src emacs-lisp
;; activate debugging
(setq debug-on-error t)
(setq debug-on-quit t)

(add-to-list 'load-path "~/.emacs.d/src/lisp")
(require 'org)

;; The following lines are always needed.  Choose your own keys.
   (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
   (global-set-key "\C-cl" 'org-store-link)
   (global-set-key "\C-ca" 'org-agenda)
   (global-set-key "\C-cb" 'org-iswitchb)

(setq org-html-metadata-timestamp-format "%a %d %B %Y ")
(setq org-time-stamp-custom-formats  "%a %d %B %Y ")

#+end_src

and the following test.org:

#+begin_src

The date: [2014-12-01 Mon]

#+end_src

gives the following result with C-c C-x C-t

The date: [2014-12-01 Mon]

Since nobody else has reported this, I imagine it's a case of user
stupidity, rather than a bug.

Can anyone point out my error?

You need to set `org-display-custom-times' to a non-nil value, too. If
you need this feature only during export, you could use a BIND keyword:

   #+BIND: org-display-custom-times t

assuming `org-export-allow-bind-keywords' is also non-nil.

Thanks for the help. Unfortunately it still doesn't work. Using the following minimal.el and test files:

#+begin_src emacs-lisp
;; activate debugging
(setq debug-on-error t)
(setq debug-on-quit t)

(add-to-list 'load-path "~/.emacs.d/src/lisp")
(require 'org)

;; The following lines are always needed.  Choose your own keys.
 (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
 (global-set-key "\C-cl" 'org-store-link)
 (global-set-key "\C-ca" 'org-agenda)
 (global-set-key "\C-cb" 'org-iswitchb)

(setq org-export-allow-bind-keywords t)
(setq org-display-custom-times t)
(setq org-html-metadata-timestamp-format "%a %d %B %Y")
(setq org-time-stamp-custom-formats  "%a %d %B %Y")

#+end_src

#+begin_src
#+BIND: org-display-custom-times t

The date: [2014-12-01 Mon]

#+end_src

I see the message in the mini buffer "Timestamps are overlaid with custom format", but the format is unchanged. I have tried both with and without the #+bind directive.

Using:

Emacs: 24.4.1
Org version: a712cec60fbb9a3384f209f96d43b8e3dfd2d9ce


Ian.




reply via email to

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