editorjs-link-with-target

Link with target for Editor.js

Usage no npm install needed!

<script type="module">
  import editorjsLinkWithTarget from 'https://cdn.skypack.dev/editorjs-link-with-target';
</script>

README

LinkWithTarget Tool

A tool link with target attribute Editor.js.

image

Installation

Get the package via NPM

npm i editorjs-link-with-target

or via Yarn

yarn add editorjs-link-with-target

Include module at your application

import LinkWithTarget from 'editorjs-link-with-target'

Usage

Add a new Tool to the tools property of the Editor.js initial config.

var editor = EditorJS({
  ...
  
  tools: {
    ...

    link: {
      class: Hyperlink
    }

    ...
  },

  ...

  i18n: {
    tools: {
      messages: {
        tools: {
          link: {
            'Open in new window': 'Открыть ссылку в новом окне',
            Save: 'Сохранить',
            'Add a link': 'Вставьте ссылку'
          }
        }
      }
    }
  }
  
  ...
});

License

MIT