@groupher/editor-mention
v1.0.8
Published
Mention Tool for Editor.js
Downloads
795
Maintainers
Readme
Mention Tool
Provides Code Blocks for the Editor.js.
Installation
Install via NPM
Get the package
npm i --save-dev @groupher/editor-mention
Include module at your application
const Mention = require('@groupher/editor-mention');
Download to your project's source dir
- Upload folder
dist
from repository - Add
dist/bundle.js
file to your page.
Usage
Add a new Tool to the tools
property of the Editor.js initial config.
var editor = EditorJS({
...
tools: {
...
mention: Mention,
},
...
});
Output data
| Field | Type | Description |
| --------- | -------- | -------------------- |
| text | string
| code's text |
{
"type" : "text",
"data" : {
"text" : "hello <span class=\"cdx-mention\">mydearxym</span>"
}
}