Veröffentlicht am Freitag, 25 November 2022 CKEditor5 - Open Links in New Tab Kategorie Oracle (Database & Co) This is how to activate the “Open in a new tab” option for the rich text editor in CKEditor5.function ( options ) { // link - activate "Open in a new tab" switch options.editorOptions.link = { decorators: { openInNewTab: { mode: "manual", label: "Open in a new tab", attributes: { target: "_blank", rel: "noopener noreferrer" } } } }; return options ; }