Example #1
0
 public static string HtmlToPlainText(this string htmlString)
 {
     HtmlConvertService h = new HtmlConvertService();
     return h.ConvertFromString(htmlString);
 }
Example #2
0
 public static List<string> GetAllImageSrcs(this string htmlString)
 {
     HtmlConvertService h = new HtmlConvertService();
     return h.GetAllImageSrcs(htmlString);
 }