Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/editor-js/delimiter
Delimiter plugin for Editor.js 2.0
https://github.com/editor-js/delimiter
codex codex-editor delimiter editor plugin
Last synced: 3 months ago
JSON representation
Delimiter plugin for Editor.js 2.0
- Host: GitHub
- URL: https://github.com/editor-js/delimiter
- Owner: editor-js
- License: mit
- Created: 2018-07-30T18:36:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-18T20:11:55.000Z (12 months ago)
- Last Synced: 2024-05-20T09:34:39.254Z (6 months ago)
- Topics: codex, codex-editor, delimiter, editor, plugin
- Language: JavaScript
- Homepage:
- Size: 288 KB
- Stars: 29
- Watchers: 2
- Forks: 34
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-editorjs - @editorjs/delimiter
README
![](https://badgen.net/badge/Editor.js/v2.0/blue)
# Delimiter Tool for Editor.js
Delimiter Tool for the [Editor.js](https://editorjs.io).
![](assets/68747470733a2f2f636170656c6c612e706963732f64653730653766382d353663642d343737392d383438662d3532633366363864656234372e6a7067.jpeg)
## Installation
Get the package
```shell
yarn add @editorjs/delimiter
```Include module at your application
```javascript
import Delimiter from '@editorjs/delimiter';
```Optionally, you can load this tool from CDN [JsDelivr CDN](https://cdn.jsdelivr.net/npm/@editorjs/delimiter@latest)
## Usage
Add a new Tool to the `tools` property of the Editor.js initial config.
```javascript
var editor = EditorJS({
...tools: {
...
delimiter: Delimiter,
}...
});
```## Config Params
This Tool has no config params
## Output data
This Tool returns empty object.
```json
{
"type" : "delimiter",
"data" : {}
}
```