1.0.13 • Published 6 months ago

rdl-javascript-inline-editor v1.0.13

Weekly downloads
-
License
GPL-2.0-or-later
Repository
github
Last release
6 months ago

// 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

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.

1.0.13

6 months ago

1.0.12

12 months ago

1.0.11

12 months ago

1.0.10

12 months ago

1.0.9

12 months ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago