Merge branch 'master' of github.com:/mono/mono
[mono-project/dkf.git] / docs / convert.cs
blob50680f6713fce06e14697712745f60143b06f498
1 using HtmlAgilityPack;
3 class Convert {
5 static void Main (string [] args)
7 HtmlDocument doc = new HtmlDocument();
8 doc.Load(args [0]);
9 doc.OptionOutputAsXml = true;
10 doc.Save(args [1]);