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: 25 days 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-17T18:12:25.000Z (10 months ago)
- Last Synced: 2025-04-20T04:18:53.760Z (about 2 months ago)
- Topics: codex, codex-editor, delimiter, editor, plugin
- Language: TypeScript
- Homepage:
- Size: 313 KB
- Stars: 45
- Watchers: 1
- Forks: 37
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-editorjs - @editorjs/delimiter
README

# Delimiter Tool for Editor.js
Delimiter Tool for the [Editor.js](https://editorjs.io).

## 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" : {}
}
```