using uCalcSoftware; var uc = new uCalc(); // 1. Create a "base" HTML transformer template var baseHtmlParser = new uCalc.Transformer(); baseHtmlParser.Description = "Base HTML Parser"; // Rule to skip over comments baseHtmlParser.SkipOver(" "; // The clone inherits the SkipOver rule from the base, so the commented img tag is ignored. Console.WriteLine(imageParser.Transform(html)); imageParser.Release(); baseHtmlParser.Release();