@coachthem/ckeditor5-build-classic-ice_hockey
v0.1.0
Published
The classic editor build of CKEditor 5 – the best browser-based rich text editor.
Downloads
2
Readme
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 );
} );