Claudio Klingler
Claudio Klingler
Given no navigation tree is defined in the configuration, the section titles for sub-directories should be determined by the following logic: - if an index page is defined, use the...
tested on 2023-11-27, 15:33 UTC: v1.1.8: ``` >>> import dateparser >>> dateparser.parse("Friday 15:53", settings={'PREFER_DATES_FROM': 'future'}) datetime.datetime(2023, 12, 1, 15, 53) ``` v1.2.0: ``` >>> import dateparser >>> dateparser.parse("Friday 15:53", settings={'PREFER_DATES_FROM':...
Basic implementation of "smart section titles"
At this time the marker is derived from the epoch time. However, especially when running tests on different hosts in parallel, there is a chance that two seperate test runs...