We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimal example from https://aaronparecki.com/2018/03/21/18/
<li class="h-entry"> <data class="p-name" value="Coffee"></data> <div class="p-p3k-drank h-p3k-food"> <span class="value">Coffee</span> </div> </li>
Currently parses:
"items": [ { "type": [ "h-entry" ], "properties": { "name": [ "Coffee" ] } } ]
Expected output via mf2py dev
"items": [ { "type": [ "h-entry" ], "properties": { "name": [ "Coffee" ], "p3k-drank": [ { "type": [ "h-p3k-food" ], "properties": { "name": [ "Coffee" ] }, "value": "Coffee" } ] } } ]
Per spec update: microformats/microformats2-parsing#28
The text was updated successfully, but these errors were encountered:
See also: https://github.com/kartikprabhu/mf2py/blob/experimental/test/examples/class_names_format.html
Sorry, something went wrong.
Add failing tests and fixes for microformats#158, microformats#160
4787005
Merge pull request #161 from gRegorLove/issue158
743d979
Add failing tests and fixes for #158, #160
No branches or pull requests
Minimal example from https://aaronparecki.com/2018/03/21/18/
Currently parses:
Expected output via mf2py dev
Per spec update: microformats/microformats2-parsing#28
The text was updated successfully, but these errors were encountered: