You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
After playing around with the parse tree a bit I noticed that if you were to create HTML elements such as:
<div class = "foo"></div>
<div class ="foo"></div>
<div class= "foo"></div>
The Razor parser does not generate an accurate syntax tree (which is used to generate correct "dynamic" attribute code) that can pull the full attribute value out of the HTML output if the inner condition results to false.
Once this has been added we should also support this attribute syntax in Tag Helpers.