2.3.1 • Published 6 years ago

codex.editor.code v2.3.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

npm.io

Code Tool for CodeX Editor

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

npm.io

Installation

Install via NPM

Get the package

npm i --save-dev codex.editor.code

Include module at your application

const CodeTool = require('codex.editor.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/codex.editor.code@2.0.0

Require this script on a page with CodeX Editor.

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

Usage

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

var editor = CodexEditor({
  ...
  
  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.3.1

6 years ago

2.3.0

7 years ago

2.2.2

7 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.0

7 years ago

2.0.0

7 years ago