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
What if I'd like to have spaces between HTML nodes? Like, when using formatting HTML tags.
Say you have HTML as such:
<p>This is a <em>test</em>.</p>
This would be rendered as:
This is atest.
I cannot come up with any way to allow space between nodes at all! All text is stripped of leading/trailing space. Ideas?
This is copied from b3d57cc#commitcomment-1460132
The text was updated successfully, but these errors were encountered:
Worked up a fix for my particular case https://github.com/iamvery/rtf/commit/38d80ed425033e77d2ebc67843e5e02e2ac62a9b
Still having issues with things like:
<p><strong>abc </strong><em>123</em></p>
Render something like "abc123" instead of "abc 123"
Sorry, something went wrong.
No branches or pull requests
What if I'd like to have spaces between HTML nodes? Like, when using formatting HTML tags.
Say you have HTML as such:
This would be rendered as:
I cannot come up with any way to allow space between nodes at all! All text is stripped of leading/trailing space. Ideas?
This is copied from b3d57cc#commitcomment-1460132
The text was updated successfully, but these errors were encountered: