1.0.2 • Published 7 years ago
codex.editor.delimiter v1.0.2
Delimiter Tool for CodeX Editor
Delimiter Tool for the CodeX Editor.

Installation
Install via NPM
Get the package
npm i --save-dev codex.editor.delimiterInclude module at your application
const Delimiter = require('codex.editor.delimiter');Download to your project's source dir
- Upload folder
distfrom repository - Add
dist/bundle.jsfile to your page.
Load from CDN
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.
<script src="..."></script>Usage
Add a new Tool to the tools property of the CodeX Editor initial config.
var editor = CodexEditor({
...
tools: {
...
delimiter: Delimiter,
}
...
});Config Params
This Tool has no config params
Output data
This Tool returns empty object.
{
"type" : "delimiter",
"data" : {}
}