I have an rich editor which adds text and images,to make the images responsive
class="img-thumbnail"
is needed in all the image tags,so have used HtmlAgility pack to extract image tags from entire Html but how to add the class on each image tag.
Example
Input from html after extracting image tag
<img src="http://domain.com/images/image1.jpg">
Expected
<img src="http://domain.com/images/image1.jpg" class="img-thumbnail">
Code
public string ParseImage(string pHtml)
{
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(pHtml);
var imgs = doc.DocumentNode.SelectNodes("//img");
foreach (var item in imgs)
{
string orig = item.Attributes["src"].Value;
//Add class to each img tag.
}
}