Handlebars.Net.Helpers icon indicating copy to clipboard operation
Handlebars.Net.Helpers copied to clipboard

Handlebars.Net helpers in the categories: 'Boolean', 'Constants', 'Enumerable', 'Environment', 'Math', 'Regex', 'String', 'DateTime' and 'Url'.

Results 9 Handlebars.Net.Helpers issues
Sort by recently updated
recently updated
newest added

### Describe the bug When using the JsonPath.SelectToken feature in the handlebar transformer, I get a null ref exception. The exception occurs in HandlebarsDotNet.Helpers.JsonPathHelpers.SelectToken(object, string). Decompiling shows that the value...

I'm looking to achieve functionality similar to this in https://docs.wiremock.io/response-templating/dates-and-times/ ``` {{now}} {{now offset='3 days'}} {{now offset='-24 seconds'}} {{now offset='1 years'}} {{now offset='10 years' format='yyyy-MM-dd'}} ``` WireMock uses this library...

Not sure if this is a DynamicLinq issue or an issue in the helper, hopefully you can forward this to the relevant repository since I'm not sure exactly how DynamicLinq...

When registering Handlebars helpers using HandlebarsHelpers.Register with the UseCategoryPrefix option set to false, `HandlebarsHelpers.Register(handlebarsContext, options => { UseCategoryPrefix = false; });` it is not possible to use the Truncate helper...

bug

https://github.com/Handlebars-Net/Handlebars.Net.Helpers/wiki/Math#mod Incorrectly calls the operator `Mod` when it is in fact `Modulo`

documentation
enhancement

As a tech, I'd like to add 2 new helpers to convert a certain Datetime to a specific timezone Example: Convert straight from UTC: ``` DateTime utcTime = DateTime.UtcNow; //...