Delimiter Tool for CodeX.Editor
npm install codex.editor.delimiter
Delimiter Tool for the CodeX Editor.

Get the package
``shell`
npm i --save-dev codex.editor.delimiter
Include module at your application
`javascript`
const Delimiter = require('codex.editor.delimiter');
1. Upload folder dist from repositorydist/bundle.js
2. Add file to your page.
You can load specific version of package from jsDelivr CDN.
https://cdn.jsdelivr.net/npm/codex.editor.delimiter@1.0.1
Require this script on a page with CodeX Editor.
`html`
Add a new Tool to the tools property of the CodeX Editor initial config.
`javascript`
var editor = CodexEditor({
...
tools: {
...
delimiter: Delimiter,
}
...
});
This Tool has no config params
This Tool returns empty object.
`json``
{
"type" : "delimiter",
"data" : {}
}