HAST transforms property names with acronyms into camelcased names:
Acronyms in names are treated as a normal word and the previous rules apply. For example, itemid become itemId and bgcolor becomes bgColor.
Likewise, valign becomes vAlign in a HAST, but the plugin only checks for the lowercase property name, which misses on all HASTs.
This is a problem when using rehype-react as react complains about the unknownvAlign prop which is passed on to the component.