Single line comments in the opening tag seem to break props parsing. The rendered vnode will only receive an empty object as props.
html`<span
// Every attribute after this comment will be dropped
id="foo"
/>`
Actual Behavior
// returned vnode
{
props: {},
}
Expected Behavior
// returned vnode
{
props: { id: "foo" },
}