tiptap-vuetify
tiptap-vuetify copied to clipboard
["Link" extension] How use link without "rel" attribute?
HI! Have a little problem with tip-tap editor. How can i delete attribute "rel" or set it empty?
rel="noopener noreferrer nofollow" to rel="" or delete attribute.

Currently facing this issue
We are facing this issue too
This is only set initially when configuring the extension:
https://github.com/ueberdosis/tiptap/blob/8c6751f0c638effb22110b62b40a1632ea6867c9/packages/extension-link/src/link.ts#L79
@AidanDaniel97 can you provide any example?
edit:
here is workaround
https://github.com/iliyaZelenko/tiptap-vuetify/issues/208
<style>
div.tiptap-vuetify-editor__content a {
pointer-events: auto !important;
}
</style>