@coachthem/ckeditor5-build-classic-lacrosse

0.1.0 • Public • Published

CKEditor 5 classic editor build for Lacrosse sport

The classic editor custom build for CKEditor 5.

Demo 1

CKEditor 5 classic editor custom build screenshot

Demo 2

CKEditor 5 classic editor custom build screenshot

Documentation

Quick start

First, install the build from npm:

npm install --save @coachthem/ckeditor5-build-classic-lacrosse

And use it in your website:

<div id="editor">
	<p>This is the editor content.</p>
</div>
<script src="./node_modules/@coachthem/ckeditor5-build-classic-lacrosse/build/ckeditor.js"></script>
<script>
	ClassicEditor
		.create( document.querySelector( '#editor' ) )
		.then( editor => {
			window.editor = editor;
		} )
		.catch( error => {
			console.error( 'There was a problem initializing the editor.', error );
		} );
</script>

Or in your JavaScript application:

import ClassicEditor from '@coachthem/ckeditor5-build-classic-lacrosse';

// Or using the CommonJS version:
// const ClassicEditor = require( '@coachthem/ckeditor5-build-classic-lacrosse' );

ClassicEditor
	.create( document.querySelector( '#editor' ) )
	.then( editor => {
		window.editor = editor;
	} )
	.catch( error => {
		console.error( 'There was a problem initializing the editor.', error );
	} );

License

Package Sidebar

Install

npm i @coachthem/ckeditor5-build-classic-lacrosse

Weekly Downloads

1

Version

0.1.0

License

GPL-2.0-or-later

Unpacked Size

4.57 MB

Total Files

71

Last publish

Collaborators

  • cbaigorri-coachthem
  • gauri-coachthem