davia-editorjs-link-with-target
v1.0.5
Published
Link with target for Editor.js
Downloads
34
Maintainers
Readme
LinkWithTarget Tool
A tool link with target attribute Editor.js.
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': 'Вставьте ссылку'
}
}
}
}
}
...
});