-
-
Notifications
You must be signed in to change notification settings - Fork 380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(2) The html rendering result is different from the html output result #532
Comments
second example: There is also a more special code. The code has been simplified to the minimum. The outermost div is abnormal. var html = @"
<div>
<span>
<font>
<div>
<span>
<div></div>
</span>
</div>
</font>
</span>
<span></span>
</div>";
var doc = new HtmlDocument();
doc.LoadHtml(html);
var newHtml = doc.DocumentNode.OuterHtml; newHtml value is: <div>
<span>
<font>
<div>
<span></span>
<div></div>
</div>
</font>
</span>
</div>
<span></span>
Test URL: https://dotnetfiddle.net/K1JXDE |
Hello, Thank you for reporting. We are already aware of this issue here: #531 It should be fixed really soon. Best Regards, Jon |
Hello @colindcli , @Jagailo The code added in v1.11.57 has been reverted in v1.11.58, so this issue should no longer happen. More information can be found in the issue #529 for you @colindcli Best Regards, Jon |
Similar to the previous situation in #529
Test URL: https://dotnetfiddle.net/HrDL5G
The text was updated successfully, but these errors were encountered: