3.0.0 • Published 4 years ago

@itech-indrustries/code v3.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

npm.io npm.io

Code Tool for Editor.js

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

Screenshot from 2020-08-07 00-59-31

Installation

Install via NPM

Get the package

npm i @itech-indrustries/code

Include module at your application

const CodeTool = require('@itech-indrustries/code');

Download to your project's source dir

  1. Upload folder dist from repository
  2. Add dist/bundle.js file to your page.

Load from CDN

You can load specific version of package from jsDelivr CDN.

https://cdn.jsdelivr.net/npm/@editorjs/code@3.0.0

Require this script on a page with Editor.js.

<script src="https://cdn.jsdelivr.net/npm/@itech-indrustries/code@latest"></script>

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}",
    }
}