3

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

如何在 postamble 中获得自定义时间格式?

我尝试将变量 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。

4

1 回答 1

2

你应该试试:

(setq org-export-html-date-format-string "%Y-%m-%d")
于 2013-07-30T07:11:41.730 回答