Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@eonasdan/editorjs-code
Advanced tools
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
Get the package
npm i --save-dev@eonasdan/editorjs-code
Include module at your application
const CodeTool = require('@editorjs/code');
dist
from repositorydist/bundle.js
file to your page.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>
Add a new Tool to the tools
property of the Editor.js initial config.
var editor = EditorJS({
//...
tools: {
//...
code: CodeTool,
}
// ...
});
Field | Type | Description |
---|---|---|
placeholder | string | Code Tool's placeholder string |
languageList | { name: string, code: string }[] | Replace the default list |
additionalLanguages | { name: string, code: string }[] | Add additional languages |
Display Name | Code |
---|---|
HTML | html |
CSS | css |
JavaScript | js |
C# | csharp |
ASP.NET (C#) | aspnet |
Docker | docker |
Git | git |
Java | java |
JSON | json |
JSONP | jsonp |
JSON5 | json5 |
PowerShell | powershell |
Python | python |
React JSX | jsx |
React TSX | tsx |
Regex | regex |
Sass (Sass) | sass |
Sass (Scss) | scss |
SQL | sql |
TypeScript | typescript |
YAML | yaml |
var editor = EditorJS({
//...
tools: {
code: {
class: CodeTool,
config: {
additionalLanguages: [
{ name: 'Bicep', code: 'bicep' },
]
}
}
}
//...
});
This Tool returns code.
{
"type" : "code",
"data" : {
"code": "body {\n font-size: 14px;\n line-height: 16px;\n}",
"language-code": "language-javascript"
}
}
FAQs
Code Tool for Editor.js with prism support
We found that @eonasdan/editorjs-code demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.