Veil
Veil copied to clipboard
A template renderer / view engine for .NET
At the moment when a handlbars template uses a not existing property, Veil will crash. So when I have the following expression: ``` {{myProp}} ``` But there is no {{myProp}}...
Hi, I got an parsing issue with the Handlebars I am not able to solve. I have the following data structure: ``` { "testtext": "test", "entries": [ { "output": "test2",...
The handlebars parser do not remove whitespace that tags occupy. Consider the following example: ``` handlebars {{#each Categories}} {{#if HasName }} {{Name}} {{/if}} {{Description}} {{/each}} ``` Will render the following...
To support features like ExpandPath and AntiForgeryToken from SuperSimple I want to add a Helpers feature. - Add a HelperSyntaxTreeNode that has the name of the helper - Add an...
I'd like to add a new package - Veil.Extensions. The purpose of this package is to hold convenience methods that are not part of the formal API for Veil. `public...
- [ ] @index in each blocks - [ ] each over dictionaries with @key - [ ] multi-section master page support?
When dev'ing in Nancy, if you make changes to a partial or master page (anything loaded through the IVeilContext.GetTemplateByName) it will not regenerate when you hit refresh. Only the primary...