Releases: zzzprojects/html-agility-pack
Releases · zzzprojects/html-agility-pack
v1.8.11
v1.8.10
v1.8.9
v1.8.8
v1.8.7
v1.8.6
v1.8.5
v1.8.4
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
v1.8.1
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);