🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

codex.editor.code

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codex.editor.code

Code Tool for CodeX.Editor

2.3.1
latest
Source
npm
Version published
Weekly downloads
11
-54.17%
Maintainers
1
Weekly downloads
 
Created
Source

Code Tool for CodeX Editor

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

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

  • Upload folder dist from repository
  • 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}",
    }
}

Keywords

codex editor

FAQs

Package last updated on 18 Feb 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts