GrungeElFz / Astro_Liquid.Dreams

https://liquiddreams.vercel.app
MIT License
2 stars 0 forks source link

Task: Normalize the `publishDate`'s value from all of the Artist blogs #8

Open GrungeElFz opened 2 hours ago

GrungeElFz commented 2 hours ago

Task:

Directory: src/content/post


Note:

The format 2024-08-14T00:00:00Z is an ISO 8601 date and time string.

GrungeElFz commented 2 hours ago

The Z at the end stands for Zulu time, which is equivalent to UTC.

In our case, a local time with an offset from UTC should be used instead. 2024-08-14T08:30:00+02:00 would represent 8:30AM on August 14, 2024, in a time zone that is 2 hours ahead of UTC.


Note: