My use case is I have a html template I wish to compile server side but define inside of a RAZOR view.
Rendering out this template using RAZOR syntax is not possible because the value are only ever client side. Like jQuery templates and the like.
Ideally, it would be passed in as such from tje view:
@Html.Template(<this somehow indicates it's the start of my string>
<div>Hello {{= NameOfHomePlanet }}</div>
<div>And welcome to a second line!</div>
</this somehow indicates it's the end of my string>);
Now in the helper:
public static Template(this Html html, string template)
{
// tmplate == " <div>Hello {{= NameOfHomePlanet }}</div>\n"
// + "<div>And welcome to a second line!</div>";
}
That would result in that HTML between the outermost fictional tags being passed in as the first argument of the Html helper named Template.
In playing with I was unable to get the syntax to work out. Is this possible?
