Skip to content

Add Support for Tag Helpers #132

@ChayimFriedman2

Description

@ChayimFriedman2

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions