Code Tool for Editor.js
npm install @editorjs/code
Code Tool for the Editor.js allows to include code examples in your articles.

Get the package
``shell`
yarn add @editorjs/code
Include module at your application
`javascript`
import CodeTool from '@editorjs/code';
Optionally, you can load this tool from CDN JsDelivr CDN
Add a new Tool to the tools property of the Editor.js initial config.
`javascript
var editor = EditorJS({
...
tools: {
...
code: CodeTool,
}
...
});
`
| Field | Type | Description |
| ----------- | -------- | -------------------------------|
| placeholder | string | Code Tool's placeholder string |
This Tool returns code.
`json``
{
"type" : "code",
"data" : {
"code": "body {\n font-size: 14px;\n line-height: 16px;\n}",
}
}