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
Currently we treat text that is not wrapped with markdown as a text node and line breaks as \n, this makes the library prone to errors related with scrolling & cursor movement.
Expected Behavior
All leaf text nodes should be wrapped by an individual tag
We should use <br> instead of \n
(optional) Each new paragraph / line of text should be wrapped with <p> tag
The text was updated successfully, but these errors were encountered:
Current Behavior
Currently we treat text that is not wrapped with markdown as a text node and line breaks as
\n
, this makes the library prone to errors related with scrolling & cursor movement.Expected Behavior
<br>
instead of\n
<p>
tagThe text was updated successfully, but these errors were encountered: