Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@eonasdan/editorjs-code

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eonasdan/editorjs-code

Code Tool for Editor.js with prism support

  • 3.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Code Tool for Editor.js

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

This fork is made to work with Prism Highlight.

You can configure what languages are available through config.languageList or supplement the default list with config.additionalLanguages

Installation

Install via NPM

Get the package

npm i --save-dev@eonasdan/editorjs-code

Include module at your application

const CodeTool = require('@editorjs/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/@eonasdan/editorjs-code

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: CodeTool,
  }
  // ...
});

Config Params

FieldTypeDescription
placeholderstringCode Tool's placeholder string
languageList{ name: string, code: string }[]Replace the default list
additionalLanguages{ name: string, code: string }[]Add additional languages

Default Languages

Display NameCode
HTMLhtml
CSScss
JavaScriptjs
C#csharp
ASP.NET (C#)aspnet
Dockerdocker
Gitgit
Javajava
JSONjson
JSONPjsonp
JSON5json5
PowerShellpowershell
Pythonpython
React JSXjsx
React TSXtsx
Regexregex
Sass (Sass)sass
Sass (Scss)scss
SQLsql
TypeScripttypescript
YAMLyaml

Adding additional languages

var editor = EditorJS({
    //...
    tools: {
        code: {
            class: CodeTool,
                config: {
                additionalLanguages: [
                    { name: 'Bicep', code: 'bicep' },
                ]
            }
        }
    }
    //...
});

Output data

This Tool returns code.

{
    "type" : "code",
    "data" : {
        "code": "body {\n font-size: 14px;\n line-height: 16px;\n}",
        "language-code": "language-javascript"
    }
}

Keywords

FAQs

Package last updated on 26 Jul 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc