从org-mode导出html:自定义日期格式

时间:2013-07-16 19:35:31

标签: html org-mode

我将org文件导出为html。我正在使用Org-mode 7.9.3f和Emacs 24。

如何在后同步码中获得自定义时间格式?

我尝试将变量org-export-html-postamble-format设置为

(setq org-export-html-postamble-format 
       '(("en" "<p class=\"date\">Date: %d</p>")))

然后时间格式如下:2013-07-16T21:20 + 0200

我希望只有日期:2013-07-16,即%y-%m-%d。

1 个答案:

答案 0 :(得分:2)

你应该尝试:

(setq org-export-html-date-format-string "%Y-%m-%d")