Skip to content

Releases: zzzprojects/html-agility-pack

v1.8.11

05 Dec 00:20
307600f
Compare
Choose a tag to compare

Download the library here

  • FIXED: TRACE constant is defined for release configuration of .net standard project #265

v1.8.10

08 Nov 20:43
6912f39
Compare
Choose a tag to compare

Download the library here

  • FIXED: Net Standard not yet CLS-compliant

v1.8.9

01 Oct 17:32
e2ecdb6
Compare
Choose a tag to compare

Download the library here

  • FIXED: Issue with Deep Clone that contains child nodes

v1.8.8

21 Sep 21:03
e2ecdb6
Compare
Choose a tag to compare

Download the library here

  • MERGED: Fixed for indexing strings out of bounds #247
  • MERGED: HasClass whitespace bug #243

v1.8.7

19 Aug 20:59
Compare
Choose a tag to compare

Download the library here

  • FIXED: HtmlNodeCollection.FindFirst finds
    elements when searching for "b" #233
  • ADDED: NuGet Package : Add repository metadata. #234

v1.8.6

10 Aug 20:15
1dfe439
Compare
Choose a tag to compare

Download the library here

  • FIXED: Filename not escaped when cached on computer - IOException on load html #228

v1.8.5

11 Jul 00:28
1dfe439
Compare
Choose a tag to compare

Download the library here

  • ADDED: Overload to DetectEncoding method (Encoding detection logic? #213)
  • FIXED: Unclosed tags introduced in version 1.7.2 #217

v1.8.4

26 May 22:43
Compare
Choose a tag to compare

Download the library here

  • ADDED: UseOriginalName method to keep original name on attribute #199
var doc = new HtmlAgilityPack.HtmlDocument();

doc.LoadHtml(@"<svg version=""1.1"" xmlns=""http://www.w3.org/2000/svg"" xmlns:xlink=""http://www.w3.org/1999/xlink"" width=""100%"" height=""100%"" viewBox=""0 0 600 800"">
<rect x=""0"" y=""0"" fill=""#000007"" width=""600"" height=""100%""></rect>
<image width=""600"" height=""800"" xlink:href=""images/cover.jpg"" transform=""translate(0 0)""></image>
</svg>");


doc.UseAttributeOriginalName("svg");

v1.8.2

11 May 13:38
Compare
Choose a tag to compare

Download the library here

  • FIXED: Setting HtmlTextNode.Id causes StackOverflowException on Save #188
  • FIXED: <textarea> tag has real html child nodes when it should not #183

v1.8.1

21 Apr 14:04
3931f5a
Compare
Choose a tag to compare

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);