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
ASP.NET Core added support for Tag Helpers, a nice feature permits you to write use html helpers without actually using them.
For example, vash with tag helpers can replace the following code:
@{
var s = '<img />';
}
@html.raw(s)
With the following:
@{
var s = '<img />';
}
<vash-raw>s</vash-raw>
This opens the door to many cool possibilites. And the ability to define custom tag helpers is awesome. If vash will support the same thing, that would be great.
The text was updated successfully, but these errors were encountered:
ASP.NET Core added support for Tag Helpers, a nice feature permits you to write use html helpers without actually using them.
For example, vash with tag helpers can replace the following code:
With the following:
This opens the door to many cool possibilites. And the ability to define custom tag helpers is awesome. If vash will support the same thing, that would be great.
The text was updated successfully, but these errors were encountered: