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

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