12.4.2 • Published 5 years ago

ckeditor5-build-advanced v12.4.2

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

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.