[SOLVED] External links in text editor

Hi guys!

Mayby a silly question but. How to add external link with taget blank in ‘Neos.NodeTypes:Text’.
Is there a possibility to let user (editor) to set links like this?

Yes you can enable more options for the linkeditor via the inline.editorOptions. Sorry can provide more as I’m writing from my phone :slight_smile:

Hmm llinkeditor? I don’t understand. I’ve got text field to put text in. And with aloha I’ve posibility to mark text and assign link.

This works with the React UI in Neos 3+

LinkEditor%20Neos

You need enable the additional fields like this:

properties:
  text:
    ui:
      inline:
        editorOptions:
          linking:
            anchor: true
            title: true
            relNofollow: true
            targetBlank: true

Oooooo so I have to update neos UI, in which version these options are available?

See https://www.neos.io/blog/neos-react-ui-beta-1.html for more information on the “new” neos-ui - depending on what Neos version you are on, it might already be installed and even already be the default (Neos 4.x).

Thanks!