public static string ToXml(string html, Options options = Options.Default) { var parser = new XHTML(); return parser.Process(html, options); }
public static Form[] GetForms(string html) { return(XDocument.Parse(XHTML.ToXml(html)).GetForms()); }
public static string ToXml(string html, Options options = Options.Default) { var parser = new XHTML(); return(parser.Process(html, options)); }