Дубликат: https://stackoverflow.com/a/52275503/6809056
Вы можете расширить формат ссылки и удалить целевой атрибут.Смотрите этот пример .
var Link = Quill.import('formats/link');
class MyLink extends Link {
static create(value) {
const node = super.create(value);
node.setAttribute('href', this.sanitize(value));
//node.setAttribute('target', '_blank');
node.removeAttribute('target');
return node;
}
}
Quill.register(MyLink);
var quill = new Quill('#editor-container', {
modules: {
toolbar: [
[{ header: [1, 2, false] }],
['bold', 'italic', 'underline'],
['link']
]
},
placeholder: 'Compose an epic...',
theme: 'snow' // or 'bubble'
});