mustache-sharp icon indicating copy to clipboard operation
mustache-sharp copied to clipboard

An extension of the mustache text template engine for .NET.

Results 44 mustache-sharp issues
Sort by recently updated
recently updated
newest added

It would be great if mustache has support of include tag: ``` {{#include 'path-to-other-mustache-template-file.html'}} ```

I was searching for the word "list" and couldn't find how to show them.

Contains the access array elements support from nikkelocke fork as well some minor bugfixes: - 'en-us' cultureinfo added in the 'TestCompile_MultipleTags' test - a bug fix to the array element...

I have the following template: {{#each Records}} Bug ID: {{ID}}{{Title}}{{Component}}{{OS}}{{Project}} Root Cause/Resolution: {{Resolution}} {{/each}} " I have this data structure: {"Records": [{ "Title": "some title", "Component": "some component", "OS": "Some...

I've created some initial support for DynamicObject objects. It works for DynamicObject objects that have members, but not indexes (like Array, IList, etc.). For the moment, it depends on Dynamitey....

added the possibility to change starting {{ and ending }} with optional constructor of Format Compiler needed for using templating with Angular/handlerbar clientside

I couldn't find a way to get a list of tags used in the template. In my application I would like to check which tags are required and then call...

This is in line with standard mustache/handlebars. Double-mustache tags will be encoded with the provided IStringEncoder (defaults to PlainTextEncoder), while triple-mustache tags will be left as-is. This should be 100%...

I am getting some null reference exceptions while debugging... they are always happening on startup of a web application. Below is the stack trace... any ideas? at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue...

I'm transforming data: FormatCompiler compiler = new FormatCompiler(); Generator generator = compiler.Compile(template.TransformationTemplate); transformedData = generator.Render(gbRequest.Data); Then I want to parse it using JObject.Parse JObject Data = JObject.Parse(transformedData); If a string...