@editorjs/code

2.9.0 • Public • Published

Code Tool for Editor.js

Code Tool for the Editor.js allows to include code examples in your articles.

Installation

Get the package

yarn add @editorjs/code

Include module at your application

import CodeTool from '@editorjs/code';

Optionally, you can load this tool from CDN JsDelivr CDN

Usage

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

var editor = EditorJS({
  ...
  
  tools: {
    ...
    code: CodeTool,
  }
  
  ...
});

Config Params

Field Type Description
placeholder string Code Tool's placeholder string

Output data

This Tool returns code.

{
    "type" : "code",
    "data" : {
        "code": "body {\n font-size: 14px;\n line-height: 16px;\n}",
    }
}

Dependencies (1)

Dev Dependencies (2)

Package Sidebar

Install

npm i @editorjs/code

Weekly Downloads

20,558

Version

2.9.0

License

MIT

Unpacked Size

11.3 kB

Total Files

7

Last publish

Collaborators

  • codex-team