This repository was archived by the owner on Dec 17, 2021. It is now read-only.
Releases: pluralsight/htmlTagValidator
Releases · pluralsight/htmlTagValidator
Release v1.6.0
Added
- Boolean attributes in all the allowed variations forms are now parsed and included in the AST
<input checked><input checked="true"><input checked="">
Fixed
- Allow unambiguous ampersands (
&) in double-quoted attribute values. Ampersands are allowed EXCEPT when they come in the form of a named reference (e.g.,&something;) wheresomethingis not a valid named reference from this list.
Release v1.5.0
Added
-
Added
preserveCaseoption to allow validation of Angular 2 templates. Here is a combination of settings and configuration that appears to work well for Angular 2.{ settings: { preserveCase: true }, tags: { normal: [ 'template' ] }, attributes: { '_': { mixed: /^((\*ng)|(^\[[\S]+\]$)|(^\([\S]+\)$))|(^\[\([\S]+\)\]$)/ } } }