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
First of all, I would like to thank you for this great library.
When rendering this simple HTML code
<html> <body> <p><b>Line 1</b><br><b>Line 2</b><br><b>Line 3</b><br><b>Line 4</b></p> </body> </html>
the result looks like
Expected result:
If I change the block
else if (box.Boxes[i].IsBlock) { followingBlock = true; }
in the CorrectLineBreaksBlocks method of DomParser.cs to
else if (box.Boxes[i].IsBlock && !box.Boxes[i].IsBrElement) { followingBlock = true; }
it works, at least for my use case.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First of all, I would like to thank you for this great library.
When rendering this simple HTML code
the result looks like
Expected result:
If I change the block
in the CorrectLineBreaksBlocks method of DomParser.cs to
it works, at least for my use case.
The text was updated successfully, but these errors were encountered: