tiptap-vuetify icon indicating copy to clipboard operation
tiptap-vuetify copied to clipboard

["Link" extension] How use link without "rel" attribute?

Open vikt0r7 opened this issue 4 years ago • 4 comments

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.

image

vikt0r7 avatar Dec 17 '20 10:12 vikt0r7

Currently facing this issue

albertflex avatar May 04 '21 11:05 albertflex

We are facing this issue too

maxevilmind avatar May 13 '22 09:05 maxevilmind

This is only set initially when configuring the extension:
https://github.com/ueberdosis/tiptap/blob/8c6751f0c638effb22110b62b40a1632ea6867c9/packages/extension-link/src/link.ts#L79

AidanDaniel97 avatar Jul 01 '22 10:07 AidanDaniel97

@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>

gileneusz avatar Mar 05 '23 13:03 gileneusz