2.9.0 • Published 6 months ago

@editorjs/code v2.9.0

Weekly downloads
3,885
License
MIT
Repository
github
Last release
6 months ago

npm.io

Code Tool for Editor.js

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

npm.io

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

FieldTypeDescription
placeholderstringCode Tool's placeholder string

Output data

This Tool returns code.

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

6 months ago

2.8.0

1 year ago

2.7.0

3 years ago

2.6.0

4 years ago

2.5.0

4 years ago

2.4.1

5 years ago

2.4.0

5 years ago