I’m attempting to store DateTime
information about a text document (accessible in File > Properties) and I would like to ensure that the timezone offset is appended to the timestamp when it’s stored.
It’s currently writing this to the file:
<meta:user-defined meta:name="Date completed" meta:value-type="date">2025-08-06T00:03:36</meta:user-defined>
The output should be either:
<meta:user-defined meta:name="Date completed" meta:value-type="date">2025-08-06T00:03:36-08:00</meta:user-defined>
or
<meta:user-defined meta:name="Date completed" meta:value-type="date">2025-08-06T08:03:36Z</meta:user-defined>
If it’s possible, I would like to replace the naive timestamps (such as creation-date
) with timezone-aware timestamps throughout the entire document at the time of its saving. Have I overlooked a configuration option somewhere? I’m using LibreOffice version 25.2.5.2 from Flatpak.