Regression from last release to master
Example site: https://aaronparecki.com/, which has
<div class="h-card">
<time class="dt-bday" datetime="--12-28"></time>
</div>
output:
{
"type": ["h-entry"],
"properties": {
"bday": ["--12-2800"],
}
}
expected output: "bday": ["--12-28"]
This looks like php-mf2 tries to parse the date, instead of simply passing through the value it finds in the datetime=property.
Regression from last release to master
Example site: https://aaronparecki.com/, which has
output:
{ "type": ["h-entry"], "properties": { "bday": ["--12-2800"], } }expected output:
"bday": ["--12-28"]This looks like php-mf2 tries to parse the date, instead of simply passing through the value it finds in the
datetime=property.