Skip to content

sainisagar310/editor-mention

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mention Tool

Provides Code Blocks for the Editor.js.

image

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

  1. Upload folder dist from repository
  2. 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>"
    }
}

About

mention tool for editor.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.1%
  • CSS 14.9%