#[tantek]hCard and hAtom yes, as part of backcompat for IndieWeb use-cases of course. hResume I'm not sure anything parses it since the libraries that Glenn wrote years ago.
#KartikPrabhuI think mf2py does backcompat for hresume
#[tantek]I believe it, problem is lack of h-resume consuming applications/services
#KartikPrabhumaybe someone should talk to linkedin jk!
#[tantek]KartikPrabhu, perhaps we need to start with more h-resume examples in the wild to point to, to make it worth the time to talk to LinkedIn (to support importing, updating from h-resume)
#jackylol I feel like I'm building an AST of date-time values for value-class parsing
#aaronpkI thought the whole point of the way datetime parsing works is the parser doesn't have to do any date parsing at all, just treating things as strings
#jackyso initially, my assumption was that some sense of parsing was needed
#jackyI think that came from me taking the headings literally
#jackynamely "the following rules apply in addition to (and in some cases replacing)"; making me think that some sense of massaging values to match the expected formats at the bottom of that section
#jackynow I'm seeing it's more of the "find strings and massage them to expected formats"
#jackyi.e: you can provide something like 2022-010 4 AM but that doc hints that it should be returned as "YYYY-MM-DD HH:MM"
#jacky(so ordinal formatting would be lost and the use of meridan values push it to be in 24-hour style)
#aaronpkOh darn, expecting 4 AM to turn into 4:00 is not trivial
#[KevinMarks]If you're parsing into a strongly typed language there may be a case for creating native timestamps, but then you do hit all the date vs datetime issues we were talking about before
#jackyI've been using named groups in the regex to help with that meridan math
#jacky(if `pm` is detected, add 12 to hour value) for example
#barnabyjacky: maybe if enough people write mf2 parsers, someone will finally end up actually using the value class pattern for datetime parts, to justify having written all that code for handling them