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
By default I believe all links are relative if they don't begin with http, what you need to do is import and update the sanitize function in the Link format
Untested but the following may work
const Link = Quill.import('formats/link');
Link.sanitize = url => url;
By default I believe all links are relative if they don't begin with http, what you need to do is import and update the sanitize function in the Link format
Untested but the following may work
const Link = Quill.import('formats/link');
Link.sanitize = url => url;
I found a variable in source code in quill.js named PROTOCOL_WHITELIST
Steps for Reproduction
Expected behavior:
hyperlink's value should be 'beaco://xxx'
Actual behavior:
hyperlink's value was 'about:blank'
Platforms:
chrome
Version:
version of quill.js is 1.3.6
The text was updated successfully, but these errors were encountered: