Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@ckeditor/ckeditor5-build-multi-root
Advanced tools
The multi-root editor build of CKEditor 5 – the best browser-based rich text editor.
The multi-root editor build for CKEditor 5. Read more about the multi-root editor build and see the demo.
See:
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.
Licensed under a dual-license model, this software is available under:
For more information, see: https://ckeditor.com/legal/ckeditor-licensing-options.
44.1.0 (December 16, 2024)
We are pleased to announce the latest CKEditor 5 release, focusing on performance enhancements and key bug fixes to improve your editing and collaboration experience.
This release introduces another set of performance related improvements, focused on faster editor initialization for huge documents. The initialization time was lowered by further 15% to 45%, depending on the tested sample.
The combined improvements introduced in recent releases amount to around 65%-80% lower loading time in total, which means the editor will load 3-5x faster. As the gain is not linear, bigger documents see even better improvement (more than 10x faster).
Moreover, all these improvements positively impact document save time (editor.getData()
), which should help with autosave issues, among others.
We still actively work in this area, so you may expect even more editor load and save efficiency improvements in the upcoming releases.
showCommentHighlights
option in editor.getData()
, that changes the comment marker conversion, allowing for styling comments in the output. Perfect for showing what was commented in Export to PDF, for example.As the holiday season approaches, we extend our warmest wishes to our community and users. Thank you for your continued support, and we look forward to bringing you further enhancements and exciting features in the coming year.
FAQs
The multi-root editor build of CKEditor 5 – the best browser-based rich text editor.
The npm package @ckeditor/ckeditor5-build-multi-root receives a total of 17,201 weekly downloads. As such, @ckeditor/ckeditor5-build-multi-root popularity was classified as popular.
We found that @ckeditor/ckeditor5-build-multi-root demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.