0.1.0 • Published 3 years ago

@coachthem/ckeditor5-build-classic-ice_hockey v0.1.0

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

CKEditor 5 classic editor build for Ice Hockey sport

The classic editor custom build for CKEditor 5.

Demo 1

Demo 2

Documentation

Quick start

First, install the build from npm:

npm install --save @packageName/ckeditor5-build-classic-ice_hockey

And use it in your website:

<div id="editor">
	<p>This is the editor content.</p>
</div>
<script src="./node_modules/@packageName/ckeditor5-build-classic-ice_hockey/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 '@packageName/ckeditor5-build-classic-lacrosse';

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

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

License