You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are starting to use the library but encountered an issue.
Our users create/edit text using TipTap. It is a simple editor that allows them to create text with some easy HTML tags just by typing/selecting/formatting it.
Now, they might create text like:
"... that shows our <strong>company </strong>values."
Please notice the whitespace between "company" and the closing </strong> tag. That can easily happen in the TipTap editor and it's not obvious.
The AdaptiveHtml.toJSON() method converts this into:
"... that shows our **company**values."
because the whitespace is dropped. But should it be dropped?
The text was updated successfully, but these errors were encountered:
Hi!
We are starting to use the library but encountered an issue.
Our users create/edit text using TipTap. It is a simple editor that allows them to create text with some easy HTML tags just by typing/selecting/formatting it.
Now, they might create text like:
"... that shows our <strong>company </strong>values."
Please notice the whitespace between "company" and the closing
</strong>
tag. That can easily happen in the TipTap editor and it's not obvious.The AdaptiveHtml.toJSON() method converts this into:
"... that shows our **company**values."
because the whitespace is dropped. But should it be dropped?
The text was updated successfully, but these errors were encountered: