Releases: MananTank/validate-html-nesting
Releases · MananTank/validate-html-nesting
Release list
v1.2.4
Customizable select support added by @Calvin-LL
#15
What's Changed
- add more customizable select support by @Calvin-LL in #15
New Contributors
- @Calvin-LL made their first contribution in #15
Full Changelog: 1.2.3...v1.2.4
v1.2.3
v1.2.2
1.2.1
v1.2.0
Improved SVG nesting validation
- Until 1.1.0 the validator assumed that SVG tags can only contain SVG tags - which is unnecessarily strict
- in 1.2.0 the validator only considers the nesting invalid for SVG tags which actually alter the DOM - ex :
<svg> -> <p>invalid,<g> -> <p>valid - Fixes #3