|
@@ -124,7 +124,7 @@ structure of the values.")
|
|
|
(author (and (plist-get info :with-author)
|
|
|
(let ((auth (plist-get info :author)))
|
|
|
(and auth (org-export-data auth info)))))
|
|
|
- (date (plist-get info :date))
|
|
|
+ (date (org-export-data (plist-get info :date) info))
|
|
|
(iso-date (org-e-odt-format-date date))
|
|
|
(date (org-e-odt-format-date date "%d %b %Y"))
|
|
|
(email (plist-get info :email))
|
|
@@ -1066,7 +1066,8 @@ ATTR is a string of other attributes of the a element."
|
|
|
(let ((title (org-export-data (plist-get info :title) info))
|
|
|
(author (or (let ((auth (plist-get info :author)))
|
|
|
(and auth (org-export-data auth info))) ""))
|
|
|
- (date (org-e-odt-format-date (plist-get info :date)))
|
|
|
+ (date (org-e-odt-format-date
|
|
|
+ (org-export-data (plist-get info :date) info)))
|
|
|
(email (plist-get info :email))
|
|
|
(keywords (plist-get info :keywords))
|
|
|
(description (plist-get info :description)))
|