@netzon-oss/javascript-inline-editor

1.0.3 • Public • Published

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.

Package Sidebar

Install

npm i @netzon-oss/javascript-inline-editor

Homepage

netzon.se

Weekly Downloads

1

Version

1.0.3

License

GPL-2.0-or-later

Unpacked Size

5.06 MB

Total Files

65

Last publish

Collaborators

  • netzon-service