ckeditor5-build-advanced

12.4.2 • Public • Published

CKEditor 5 advanced editor build

This is a custom build of ckeditor with image resize and formula bar support.

CKEditor 5 classic editor build screenshot

Documentation

See:

Quick start

First, install the build from npm:

npm install --save ckeditor5-build-advanced

And use it in your website:

<div id="editor">
	<p>This is the editor content.</p>
</div>
<script src="./node_modules/ckeditor5-build-advanced/build/ckeditor.js"></script>
<script>
	ClassicEditor
		.create( document.querySelector( '#editor' ) )
		.then( editor => {
			window.editor = editor;
		} )
		.catch( err => {
			console.error( err.stack );
		} );
</script>

Or in your JavaScript application:

import ClassicEditor from 'ckeditor5-build-advanced';

// Or using the CommonJS version:
// const ClassicEditor = require( 'ckeditor5-build-advanced' );

ClassicEditor
	.create( document.querySelector( '#editor' ) )
	.then( editor => {
		window.editor = editor;
	} )
	.catch( err => {
		console.error( err.stack );
	} );

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 ckeditor5-build-advanced

Weekly Downloads

0

Version

12.4.2

License

GPL-2.0-or-later

Unpacked Size

4.66 MB

Total Files

6

Last publish

Collaborators

  • piyushkrmaurya