using Stubble.Core.Builders;
using System.Collections.Generic;
public static void Main()
var data = new Dictionary<string, object>
var template = "El tipo se llama {{Name}} y su cuenta es la nro. {{Account#Id}}";
var stubble = new StubbleBuilder().Build();
Console.WriteLine(stubble.Render(template, data));