Example #1
0
        static void Main(string[] args)
        {
            if(args.Any(x => x.ToLower() == "/d"))
            {
                Logger.DebugOn = true;
            }

            Orchestrator orc = new Orchestrator();
            orc.ConvertArticles();
            orc.ConvertImages();
        }