html-to-vdom
html-to-vdom copied to clipboard
problem with camelCase tag transform - input autocomplete="off"
html: <input type="text" autocomplete="off">
;
vtree property after html-to-vdom:
{
"attributes": {},
"type": "text",
"autoComplete": "off"
}
node after <input type="text">
vtree property after virtual-dom.h:
{
"autocomplete": true,
"type": "text",
}
node after <input type="text" autocomplete="off">