summaryrefslogtreecommitdiffstats
path: root/2020/submissions.org
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2020-11-10 10:43:28 -0500
committerSacha Chua <sacha@sachachua.com>2020-11-10 10:43:28 -0500
commit74ec8a628abe65f6d65d523522fa78bba5e8b1f2 (patch)
tree329d96abb95e4ad8347edc8c1d57977c6ae753f6 /2020/submissions.org
parent927459a20e83a317bea5461a4393940a947b57a2 (diff)
downloademacsconf-wiki-74ec8a628abe65f6d65d523522fa78bba5e8b1f2.tar.xz
emacsconf-wiki-74ec8a628abe65f6d65d523522fa78bba5e8b1f2.zip
Add timezone to talk pages
Diffstat (limited to '2020/submissions.org')
-rw-r--r--2020/submissions.org13
1 files changed, 10 insertions, 3 deletions
diff --git a/2020/submissions.org b/2020/submissions.org
index 2a7e9ca7..32d8c85e 100644
--- a/2020/submissions.org
+++ b/2020/submissions.org
@@ -3189,9 +3189,16 @@ conference for instructions on how to watch and participate. See you then!
(plist-get o :speakers)
nav-links
(plist-get o :title)
- (format "%s - %s"
- (format-time-string "%A, %b %e %Y, %l:%M %p" (org-timestamp-to-time (org-timestamp-split-range timestamp)))
- (format-time-string "%l:%M %p" (org-timestamp-to-time (org-timestamp-split-range timestamp t))))
+ (concat (format-time-string "%A, %b %e %Y, " (org-timestamp-to-time (org-timestamp-split-range timestamp)))
+ (mapconcat
+ (lambda (tz)
+ (format "%s - %s"
+ (format-time-string "%l:%M %p"
+ (org-timestamp-to-time (org-timestamp-split-range timestamp)) tz)
+ (format-time-string "%l:%M %p %Z"
+ (org-timestamp-to-time (org-timestamp-split-range timestamp t)) tz)))
+ '("EST" "America/Los_Angeles" "UTC" "CET")
+ " / "))
(plist-get o :speakers)
(org-export-string-as (plist-get o :abstract) 'md t)
nav-links)))