using System.Collections.Generic;
public static void Main()
Dictionary<string, object> data = new Dictionary<string, object>{
{ "@xxx:yyyy", "Da valoo"},
{ "tag2", "The tag valoo" },
{ "#da.label", "da label" },
{ "@da-label", "da label with -" }
string sourceVal = "Complax tag > {{[@xxx:yyyy]}} < simple tag > {{tag2}} < with moniker: {{[@da-label]}} / {{[@da-label]}}";
var template = Handlebars.Compile(sourceVal);
var result = template(data);
Console.WriteLine("Result: " + result);