Re: custom time format extension

2020-07-30 Thread Orm Finnendahl
Hi, for the record, here's the code if anyone ever comes across this: (defun same-day-p (timestamp) "check if start and end of timestamp are on the same day." (equal (mapcar (lambda (prop) (or (org-element-property prop timestamp) 0)) '(:day-start :month-start :year-start))

custom time format extension

2020-07-29 Thread Orm Finnendahl
Hi, when exporting timestamps it always bothered me that timestamps with start and end time on the same day got exported with a full date for the start and end times separated by a dash. After thinking about this for some time I implemented a method today, which combines the advantage of being