Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 6a66c43001640251a8a12273ab333149 > files > 39

mono-doc-3.2.3-5.2.mga4.noarch.rpm

using HtmlAgilityPack;

class Convert {
	
	static void Main (string [] args)
	{
		HtmlDocument doc = new HtmlDocument();
		doc.Load(args [0]);
		doc.OptionOutputAsXml = true;
		doc.Save(args [1]);
	}
}