How do I use HTML Agility Pack to edit an HTML snippet
So I have an HTML snippet that I want to modify using C#. <div> This is a specialSearchWord that I want to link to <img src="anImage.jpg" /> <a href="foo.htm">A hyperlink</a> Some more text and that specialSearchWord again. </div> and I want to transform it to this: <div> This is a <a class="special" href="http://mysite.com/search/specialSearchWord">specialSearchWord</a> that I want to link to <img src="anImage.jpg" /> <a href="foo.htm">A hyperlink</a> Some more text and that <a class="special" href="http://mysite.com/search/specialSearchWord">specialSearchWord</a> again. </div> I'm going to