An ASP.NET MVC ViewEngine using the Handlebars syntax.
This project uses https://github.com/rexm/Handlebars.Net to compile the view files on the server to .NET bytecode. The syntax for the view files is described at http://handlebarsjs.com/ (but note that is client-side Javascript so some parts differ).
The API documentation exists at https://jiellse.github.io/Handlebars.Net.Mvc/
In Application_Start in Global.asax.cs add the following lines:
// In case you want to remove the other view engines, do this:ViewEngines.Engines.Clear();// Create the view engine.varhbsve=newHandlebarsViewEngine();// The builtin helpers aren't added by default - you need to opt-in to have them available.hbsve.RegisterMvcHelpers();hbsve.RegisterSectionsHelpers();// Add the Handlebars view engineViewEngines.Engines.Add(hbsve);publicclassHomeController:Controller{publicActionResultIndex(){varmodel=new{first="John",last="Doe"}
return View(model);}}{{!< default}}
Hello, {{first}} {{last}}!
<html><body>
{{{body}}}
</body></html><html><body>
Hello, John Doe!
</body></html>