Skip to content

Properly Parse <input>#457

Open
carrvo wants to merge 1 commit intomicroformats:mainfrom
carrvo:patch-1
Open

Properly Parse <input>#457
carrvo wants to merge 1 commit intomicroformats:mainfrom
carrvo:patch-1

Conversation

@carrvo
Copy link

@carrvo carrvo commented Mar 6, 2026

Resolves #456

<html lang="en">
<body>
		<div class="h-item">
				<input class="p-name" type="text" value="A">
				<input class="p-value" type="number" value="10">
		</div>

</body></html>
{
  "rels": {},
  "rel-urls": {},
  "items": [
    {
      "type": [
        "h-item"
      ],
      "properties": {
        "name": [
          "A"
        ],
        "value": [
          "10"
        ]
      },
      "lang": "en"
    }
  ]
}
  • Added validation to any changes in the parser API.
  • Added tests covering the parsing behaviour changes.
  • Linked to any relevant issues this will close.
  • Tested the output using the demo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Does not Correctly Parse Input Tags

1 participant