Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@editorjs/table
Advanced tools
The Table Block for the Editor.js. Finally improved.
Get the package
yarn add @editorjs/table
Include module at your application
import Table from '@editorjs/table'
Optionally, you can load this tool from CDN JsDelivr CDN
Add a new Tool to the tools
property of the Editor.js initial config.
import Table from '@editorjs/table';
var editor = EditorJS({
tools: {
table: Table,
}
});
Or init the Table tool with additional settings
var editor = EditorJS({
tools: {
table: {
class: Table,
inlineToolbar: true,
config: {
rows: 2,
cols: 3,
maxRows: 5,
maxCols: 5,
},
},
},
});
Field | Type | Description |
---|---|---|
rows | number | initial number of rows. 2 by default |
cols | number | initial number of columns. 2 by default |
maxRows | number | maximum number of rows. 5 by params |
maxCols | number | maximum number of columns. 5 by params |
withHeadings | boolean | toggle table headings. false by default |
stretched | boolean | whether the table is stretched to fill the full width of the container |
This Tool returns data
in the following format
Field | Type | Description |
---|---|---|
withHeadings | boolean | Uses the first line as headings |
stretched | boolean | whether the table is stretched to fill the full width of the container |
content | string[][] | two-dimensional array with table contents |
{
"type" : "table",
"data" : {
"withHeadings": true,
"stretched": false,
"content" : [ [ "Kine", "Pigs", "Chicken" ], [ "1 pcs", "3 pcs", "12 pcs" ], [ "100$", "200$", "150$" ] ]
}
}
If you're using Content Security Policy (CSP) pass a nonce
via <meta property="csp-nonce" content={{ nonce }} />
in your document head.
If you're using this tool and editor.js in your business, please consider supporting their maintenance and evolution.
http://opencollective.com/editorjs
CodeX is a team of digital specialists around the world interested in building high-quality open source products on a global market. We are open for young people who want to constantly improve their skills and grow professionally with experiments in leading technologies.
🌐 | Join 👋 | ||
---|---|---|---|
codex.so | codex.so/join | @codex_team | @codex_team |
FAQs
Table for Editor.js
The npm package @editorjs/table receives a total of 26,169 weekly downloads. As such, @editorjs/table popularity was classified as popular.
We found that @editorjs/table demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.