我使用 org-mode 创建具有 html 导出(发布)功能的网站。
我想在html中有一个只有日期的postamble(以某种格式并且没有小时)。
准确地说,我想在我的 html 页面末尾添加“最后更新:2013 年 9 月 20 日”。而且,当然,我需要根据天数变化的相对日期。
我试图通过将此代码放入我的 .emacs 来实现这一点:
'(org-html-postamble t)
'(org-html-postamble-format (quote (("en" "Last update : %d"))))
但结果是“上次更新:”没有日期。
请告诉我必须将什么更改为我的 .emacs 或准确解释另一种方法。