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
I've noticed that newline characters are not converted to <br> tags in the final output. I've narrowed it down to ChildNodes.svelte component - there are explicit checks for string nodes and nodes with children - this excludes <br> tags which are not text nodes but do not have children. I've managed to correct the code so that it work sin my scenario, however I'm not sure if there are other edge cases that were encountered during the plugin's development that might be affected by this change.
The text was updated successfully, but these errors were encountered:
I've noticed that newline characters are not converted to
<br>
tags in the final output. I've narrowed it down toChildNodes.svelte
component - there are explicit checks for string nodes and nodes with children - this excludes<br>
tags which are not text nodes but do not have children. I've managed to correct the code so that it work sin my scenario, however I'm not sure if there are other edge cases that were encountered during the plugin's development that might be affected by this change.The text was updated successfully, but these errors were encountered: