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.
This would enable TagHelper users to write things like <input type=checkbox /> and have it output the identical code; whereas today we output <input type="checkbox" />.
This change would actually have a significant perf impact as well. Today in TagHelperOutput we have to write an attribute to an intermediate writer to potentially escape any double quotes in the case that a user wrote <input type=' """" ' /> since we always output with double quotes.
This intermediate writing step in my tests have represented over 5% of allocations.