TidyManaged
TidyManaged copied to clipboard
Quiet flag ignored
I'm setting Quiet to true, but I still get warnings scrolling past in the console output of my app. Am I missing something?
Document htmlDoc = Document.FromString(htmlBlob);
htmlDoc.OutputXml = true;
htmlDoc.DocType = DocTypeMode.Omit;
htmlDoc.AddXmlDeclaration = true;
htmlDoc.Quiet = true;
htmlDoc.CleanAndRepair();