Russell Adams <rlad...@adamsinfoserv.com> writes: >> > <2022-04-28 21:00>--<2022-04-29 02:00> >> > > Is that technically a valid timestamp, meaning that it should be > recognized? Or is it just Gnus outputting a bad timestamp and I should > go try to adjust it?
It is valid. You can check it by calling M-: (org-element-context) at timestamp. Our parser does recognise your example as: (timestamp (:type active-range :raw-value "<2022-04-28 21:00>--<2022-04-29 02:00>" :year-start 2022 :month-start 4 :day-start 28 :hour-start 21 :minute-start 0 :year-end 2022 :month-end 4 :day-end 29 :hour-end 2 :minute-end 0 :begin 293 :end 331 :post-blank 0)) You can see that the end date is recognised correctly. Best, Ihor