Suggestion: week of month in due date #56
Replies: 1 comment 1 reply
-
Thanks for sharing your thoughts. I see how that could be useful, but I think it wouldn’t be ISO-8601 compatible, so the spec would have to specify the rules around this on its own. I currently try to keep the spec slim and contain the overall complexity of it. Working with dates by hand can always be slightly inconvenient to a certain degree (sometimes more, sometimes less – in your case maybe more). An alternative to altering the spec would be to ease this situation via tooling. For example, an editor plugin could provide inlined annotations/labels for working with dates, or offer extra functionality when typing, to take away some of the mental burden. As inspiration, the Sublime Text package has an autocomplete feature that if you type the token So maybe there is a way to achieve something similar for your use-case. The capabilities of course also depend on the editor engine. |
Beta Was this translation helpful? Give feedback.
-
If I want to note that something should be done on the nth week of the month, currently I'd have to calculate which week it is in the year, then when reading it calculate back.
I propose adding support for a syntax like
2022/12/W1
(which complements the2022/W48
syntax that currently exists).Beta Was this translation helpful? Give feedback.
All reactions