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
When I paste a text like this test test test https://github.com test test, the module does not recognise the link in between and renders them all as plain text.
This however is recognised just fine with the default clipboard onPaste method.
What I tried
On line 103, I replaced this
delta = delta.insert(content);
with
delta = delta.concat(this.convert(content))
This seemed to work. Is there a reason why the plainText is not handled with the this.convert method?
Thanks
The text was updated successfully, but these errors were encountered:
Problem
When I paste a text like this
test test test https://github.com test test
, the module does not recognise the link in between and renders them all as plain text.This however is recognised just fine with the default clipboard onPaste method.
What I tried
On line 103, I replaced this
with
This seemed to work. Is there a reason why the plainText is not handled with the
this.convert
method?Thanks
The text was updated successfully, but these errors were encountered: