41.3.1 • Published 2 days ago

@ckeditor/ckeditor5-build-multi-root v41.3.1

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

CKEditor 5 multi-root editor build

npm version Coverage Status Build Status Dependency Status

The multi-root editor build for CKEditor 5. Read more about the multi-root editor build and see the demo.

Documentation

See:

Quick start

First, install the build from npm:

npm install --save @ckeditor/ckeditor5-build-multi-root

And use it in your website:

<div id="toolbar"></div>
<div id="header">
	<p>Content for header.</p>
</div>
<div id="content">
	<p>Main editor content.</p>
</div>
<div class="boxes">
	<div class="box box-left editor">
		<div id="left-side">
			<p>Content for left-side box.</p>
		</div>
	</div>
	<div class="box box-right editor">
		<div id="right-side">
			<p>Content for right-side box.</p>
		</div>
	</div>
</div>
<script src="./node_modules/@ckeditor/ckeditor5-build-multi-root/build/ckeditor.js"></script>
<script>
	MultiRootEditor
			.create( {
				header: document.getElementById( 'header' ),
				content: document.getElementById( 'content' ),
				leftSide: document.getElementById( 'left-side' ),
				rightSide: document.getElementById( 'right-side' )
			} )
			.then( editor => {
				window.editor = editor;

				// Append toolbar to a proper container.
				const toolbarContainer = document.getElementById( 'toolbar' );
				toolbarContainer.appendChild( editor.ui.view.toolbar.element );
			} )
			.catch( error => {
				console.error( 'There was a problem initializing the editor.', error );
			} );
</script>

Or in your JavaScript application:

import MultiRootEditor from '@ckeditor/ckeditor5-build-multi-root';

// Or using the CommonJS version:
// const MultiRootEditor = require( '@ckeditor/ckeditor5-build-multi-root' );

MultiRootEditor
	.create( {
		header: document.getElementById( 'header' ),
		content: document.getElementById( 'content' ),
		leftSide: document.getElementById( 'left-side' ),
		rightSide: document.getElementById( 'right-side' )
	} )
	.then( editor => {
		window.editor = editor;

		// Append toolbar to a proper container.
		const toolbarContainer = document.getElementById( 'toolbar' );
		toolbarContainer.appendChild( editor.ui.view.toolbar.element );
	} )
	.catch( error => {
		console.error( 'There was a problem initializing the editor.', error );
	} );

Note: If you are planning to integrate CKEditor 5 deep into your application, it is actually more convenient and recommended to install and import the source modules directly (like it happens in ckeditor.js). Read more in the Advanced setup guide.

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.

41.4.0-alpha.0

18 days ago

41.3.1

21 days ago

41.3.0

27 days ago

41.3.0-alpha.2

1 month ago

41.3.0-alpha.3

1 month ago

41.3.0-alpha.4

1 month ago

41.2.1

2 months ago

41.3.0-alpha.1

2 months ago

41.3.0-alpha.0

2 months ago

41.2.0

2 months ago

41.1.0

3 months ago

41.0.0

4 months ago

40.2.0

5 months ago

40.0.0

7 months ago

38.2.0-alpha.1

10 months ago

38.2.0-alpha.0

10 months ago

38.1.1

10 months ago

40.1.0

6 months ago

39.0.2

8 months ago

39.0.1

9 months ago

39.0.0

9 months ago

38.1.0

10 months ago

38.0.1

12 months ago

38.0.0

12 months ago

38.0.0-rc.0

12 months ago

38.0.0-rc.1

12 months ago

37.1.0

1 year ago

37.0.1

1 year ago

37.0.0

1 year ago

37.0.0-rc.0

1 year ago

37.0.0-alpha.3

1 year ago

37.0.0-alpha.2

1 year ago

0.0.1

1 year ago

37.0.0-alpha.1

1 year ago