ox-html: Fix handling of time-stamp-file
* lisp/ox-html.el (org-html--build-meta-info): Insert no timestamp when :time-stamp-file is nil. TINYCHANGE
This commit is contained in:
parent
0018428c25
commit
f3ba879079
|
@ -1420,10 +1420,9 @@ INFO is a plist used as a communication channel."
|
||||||
(keywords (plist-get info :keywords)))
|
(keywords (plist-get info :keywords)))
|
||||||
(concat
|
(concat
|
||||||
(format "<title>%s</title>\n" title)
|
(format "<title>%s</title>\n" title)
|
||||||
(format
|
(when (plist-get info :time-stamp-file)
|
||||||
(when :time-stamp-file
|
(format-time-string
|
||||||
(format-time-string
|
(concat "<!-- " org-html-metadata-timestamp-format " -->\n")))
|
||||||
(concat "<!-- " org-html-metadata-timestamp-format " -->\n"))))
|
|
||||||
(format
|
(format
|
||||||
"<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>\n"
|
"<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>\n"
|
||||||
(or (and org-html-coding-system
|
(or (and org-html-coding-system
|
||||||
|
|
Loading…
Reference in New Issue