alexiej / editorjs-codemirror

CodeMiirror for EditorJS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CodeMirror Tool for Editor.js

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

image-20200219214508250 README.md

Know Bugs

  • On focus, when cursor is blinking, the ediitor always activate event 'OnChange'.

Installation

Install via NPM

TODO:

Download to your project's source dir

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

Load from source

Require this script on a page with Editor.js.

<script src="..."></script>

Usage

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

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

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

About

CodeMiirror for EditorJS

License:MIT License


Languages

Language:JavaScript 91.0%Language:CSS 9.0%