public ISeries ParseSeries(string html)
        {
            var result = new ManazeroSeries();

            result.Title     = ManazeroParser.ParseTitle(html);
            result.Thumbnail = ManazeroParser.ParseThumbnail(html);
            result.Articles  = ManazeroParser.ParseArticles(html).OfType <IArticle>().ToList();
            result.Archive   = result.Articles.Select(x => ((x as ManazeroArticle).ArticleLink)).ToArray();
            return(result);
        }
 public List <string> ParseImages(string html, IArticle article)
 {
     return(ManazeroParser.ParseImages(html));
 }