Code Mirror for the Editor.js allows to include code examples in your articles.
- On focus, when cursor is blinking, the ediitor always activate event 'OnChange'.
TODO:
- Upload folder
dist
from repository - Add
dist/bundle.js
file to your page.
Require this script on a page with Editor.js.
<script src="..."></script>
Add a new Tool to the tools
property of the Editor.js initial config.
var editor = EditorJS({
...
tools: {
...
code: CodeMirror,
}
...
});
Field | Type | Description |
---|---|---|
placeholder | string |
Code Tool's placeholder string |
This Tool returns code.
{
"type" : "code",
"data" : {
"code": "body {\n font-size: 14px;\n line-height: 16px;\n}",
}
}