I have to crawl an intranet site that provides the last modified timestamps of articles in a meta tag like this: <meta name="LASTMODIFIED" content="19.02.2018 12:40">
This is easily handled by DateFormatTagger. However, there is a problem with timezones: the intranet provides the time in local time, while Solr expects it in UTC.
Can you please add support for timezone conversions in DateFormatTagger? In the meantime, is there a workaround for my problem, other than using ScriptTagger to manipulate the date after DateFormatTagger?