1.0.3 • Published 4 years ago

@netzon-oss/javascript-inline-editor v1.0.3

Weekly downloads
-
License
GPL-2.0-or-later
Repository
github
Last release
4 years ago

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

CKEditor 5 inline editor build screenshot

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.