We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
var html = "<div><br></br></div>"; var cs = new CsQuery.CQ(html, CsQuery.HtmlParsingMode.Fragment, CsQuery.HtmlParsingOptions.AllowSelfClosingTags, CsQuery.DocType.XHTML); cs.Render();
Expected result:
<div><br></div>
Result:
<div><br><br></div>
This should be valid representation of br tag in XHTML, source: https://validator.w3.org
<br></br>
The text was updated successfully, but these errors were encountered:
Edit: Fixed markdown presentation
Sorry, something went wrong.
No branches or pull requests
Expected result:
Result:
This should be valid representation of br tag in XHTML, source: https://validator.w3.org
The text was updated successfully, but these errors were encountered: