-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Description
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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels