FuManchu
FuManchu copied to clipboard
Handlebars/Mustache templating in .NET
When processing user generated content, it would be useful to limit the processing of properties through attributes. Json.NET supports something similar through the MemberSerialization flag (http://www.newtonsoft.com/json/help/html/serializationattributes.htm) and it would be...
Hi, I want to define a helper which can perform a loop, and as part of this, I'd like to pass in the @first, @last and @index variables. I notice...
I've created a template like this: ``` {{#range 1 10}} {{#if @index}},{{/if}} { // Some json content } {{/range}} ``` I'm using a custom helper for the "range" tag, which...
Hi, # each tag is not working with ExpandoObject that was deserialized from string. Source code for console application, output is comapred to Handlebars.net: http://pastebin.com/gQLpddF1
HandlebarsJS supports the notion of subexpressions, whereby the results of expression helpers can be passed to other helpers, e.g.: ``` {{outer-helper (inner-helper 'abc') 'def'}} ``` See http://handlebarsjs.com/expressions.html This might be...
### Antaris/FuManchu now has a Chat Room on Gitter @Antaris has just created a chat room. You can visit it here: [https://gitter.im/Antaris/FuManchu](https://gitter.im/Antaris/FuManchu?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&content=body_link). This pull-request adds this badge to your README.md:...
Enable scenarios where content can be inserted into a a partial template as child content, alongside existing functionality that supports arguments and parameters. ### Declaring zones in a partial template...