rdl-javascript-inline-editor
v1.0.12
Published
An extended editor from the inline editor build of CKEditor 5 // 1.0.8 disable alignment & dimensions
Downloads
10
Maintainers
Readme
// for rdl
node -v 16.16.0
npm install --force
npm run build
npm publish
An extended editor from CKEditor 5 inline editor build
Overview
Build is just an extension from the inline editor build for CKEditor 5.
Below are the added plugins from the default inline build
- Font
- Alignment
- WordCount
- TodoList
- Underline
- Strikethrough
- Code
- Subscript
- Superscript
Quick start
First, install the build from npm:
npm install --save @netzon-oss/javascript-inline-editor
And use it in your JavaScript application:
import InlineEditor from '@netzon-oss/javascript-inline-editor';
// Or using the CommonJS version:
// const InlineEditor = require( '@netzon-oss/javascript-inline-editor' );
InlineEditor
.create( document.querySelector( '#editor' ) )
.then( editor => {
window.editor = editor;
} )
.catch( error => {
console.error( 'There was a problem initializing the editor.', error );
} );
Note: Read more in the Advanced setup guide for a deeper integration into your application.
License
Licensed under the terms of GNU General Public License Version 2 or later. For full details about the license, please check the LICENSE.md
file or https://ckeditor.com/legal/ckeditor-oss-license.