1.0.5 • Published 3 years ago

@groupher/editor-emoji v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

emoji Tool

Provides Code Blocks for the Editor.js.

image

Installation

Install via NPM

Get the package

npm i --save-dev @groupher/editor-emoji

Include module at your application

const emoji = require('@groupher/editor-emoji');

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: {
    ...
    emoji: emoji,
  },
  
  ...
});

Output data

FieldTypeDescription
textstringcode's text
{
    "type" : "text",
    "data" : {
        "text" : "hello <span class=\"cdx-emoji\">mydearxym</span>"
    }
}

editor-emoji