-
-
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
Double <p> <p> open tags leave one <p> open even with option setted #538
Comments
Hello @Glorfindel88 , That is an expected behavior. A See this line in the example on the page: <P>The first piece of text<P>The second piece Let me know if that answer correctly to your question. Best Regards, Jon |
Hello @JonathanMagnan , Thanx, Best Regards. |
Hello @Glorfindel88 , There is currently no option, but we will look to see if we can add one. Everything looks to be already coded for this, so it should be very easy. Best Regards, Jon |
Thank you very much. Best Regards |
Hello @Glorfindel88 , The v1.11.59 has been released. In this version, we added the option Let me know if everything is now working as expected on your side. Best Regards, Jon |
Hello @JonathanMagnan Best Regards. |
When trying to parse an html obtained from an editor, a double
<p><p>
open tag does not get closed.Only one of the two is closed,
<p><p>
becomes
<p><p></p>
even when options
OptionCheckSyntax
,OptionFixNestedTags
andOptionWriteEmptyNodes
are set totrue
.The only way both tags are closed is to set
OptionOutputAsXml
totrue
.Here is a fiddle of what happens:
https://dotnetfiddle.net/pi92VJ
HAP version 1.11.58
.NET Framework 4.8
The text was updated successfully, but these errors were encountered: