Adds proper Newtonsoft.Json support to Handlebars.Net
dotnet add package Handlebars.Net.Extension.NewtonsoftJson
var handlebars = Handlebars.Create();
handlebars.Configuration.UseNewtonsoftJson();
[Fact]
public void JsonTestObjects()
{
var model = JObject.Parse("{\"Key1\": \"Val1\", \"Key2\": \"Val2\"}");
var source = "{{#each this}}{{@key}}{{@value}}{{/each}}";
var handlebars = Handlebars.Create();
handlebars.Configuration.UseNewtonsoftJson();
var template = handlebars.Compile(source);
var output = template(model);
Assert.Equal("Key1Val1Key2Val2", output);
}