Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Transform node.tagName is case sensitive (#266)
It looked to me like all the `node.tagName`s were uppercase, even if the original HTML was in lowercase. The `node.tagName === 'a'` in the example didn't work for me, but `node.tagName === 'A' or `node.tagName.toLowerCase() === 'a'` do.
- Loading branch information