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
This:
<div>1 <a>2</a> 3</div> ^ spaces ^
reproduces
<div>1<a>2</a>3</div> ^ not ^
problem only found to be occurring with <a> tags so far
<a>
Edit: actually I think it's all nested tags, but then spaced in between nested tags is still preserved. Here's another case:
<div>1 <a>2</a> <b>3</b> 4</div>
<div>1<a>2</a> <b>3</b>4</div>
The text was updated successfully, but these errors were encountered:
@laggingreflex try passing trim={false}, it turns off whitespace trimming. I think we do need to tweak it, but for your use-case that should fix.
trim={false}
Sorry, something went wrong.
No branches or pull requests
This:
reproduces
problem only found to be occurring with
<a>
tags so farEdit: actually I think it's all nested tags, but then spaced in between nested tags is still preserved. Here's another case:
reproduces
The text was updated successfully, but these errors were encountered: