Skip to content

Support closing bracket character (>) in attribute values

Compare
Choose a tag to compare
@bmomberger-bitovi bmomberger-bitovi released this 17 Jan 18:36
· 39 commits to master since this release

Prior to this release, a fragment like <button data-value="3 > 2"></button> would end the parsing of the start tag inside the attribute value when it encountered a character that looked like the end of the tag.

With this release, the above parses correctly, with 3 > 2 being parsed as the value of the data-value attribute and the tag ending after the attribute value ends.