Handlebars.Compile hangs permanently when compiling some malformed inputs. Here is the full program to reproduce one such case:
namespace Handlebars.Run
{
public class Program
{
public static void Main(string[] args)
{
var text = "<p>{{>trbles=}\n ";
HandlebarsDotNet.Handlebars.Compile(text);
}
}
}
Found via SharpFuzz.