Skip to content

v1.8.1

Compare
Choose a tag to compare
@JonathanMagnan JonathanMagnan released this 21 Apr 14:04
· 281 commits to master since this release
3931f5a

Download the library here

  • MERGED: Correct StreamPosition in text node inside script element #176
  • FIXED: Error downloading Html - Exception Message #171
  • ADDED: ParseExecuting event
var html1 = @"<html><body><br\>bar</body></html>";

var doc1 = new HtmlAgilityPack.HtmlDocument();
doc1.ParseExecuting = x => x.Text = x.Text.Replace(@"<br\>", "<br/>");

doc1.LoadHtml(html1);