diff options
author | Cem Keylan <cem@ckyln.com> | 2021-03-04 07:37:41 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-03-04 07:37:41 +0300 |
commit | 1c2da975cff3310c14d93c804576dd5d43d4838c (patch) | |
tree | c62bc5d184ca1f0b85d9801d669a019b36d1f652 | |
parent | 3e25ecb1a1013c1f51fe257460bfba64bea18dec (diff) | |
download | website-1c2da975cff3310c14d93c804576dd5d43d4838c.tar.gz |
change publish date format string
-rwxr-xr-x | org-publish.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org-publish.el b/org-publish.el index 45b9fdf..85a2bd1 100755 --- a/org-publish.el +++ b/org-publish.el @@ -115,7 +115,7 @@ PUB-DIR is when the output will be placed." (defun carbs/format-date-subtitle (file project) "Format the date found in FILE of PROJECT." - (format-time-string "posted on %b %d, %y" (org-publish-find-date file project))) + (format-time-string "posted on %b %d, %Y" (org-publish-find-date file project))) (defun carbs--pre/postamble-format (type) "Return the content for the pre/postamble of TYPE." |