This month's report will be prepared.
TodayAn email will be sent to the customer.
TodayThe meeting will be held.
YesterdayConversation with users.
YesterdayPayment refund will be made to the customer.
20 min agoPayment form will be activated.
20 min agoSigned in with a different device.
YesterdayYour billing information is not active.
YesterdayYour subscription has expired.
TodayYour storage space is running low
TodayCKEditor 5 provides every type of WYSIWYG editing solution imaginable. Plugin page.
To use the plugin, you need to add the following files.
<!-- Javascript -->
<script src="libs/ckeditor5/ckeditor.js"></script>
Here goes the initial content of the editor.
<div id="editor">
<p>Here goes the initial content of the editor.</p>
</div>
ClassicEditor.create(document.querySelector('#editor'))
Here goes the initial content of the editor.
ClassicEditor.create(document.querySelector('#customized-editor'), {
toolbar: ['heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote'],
heading: {
options: [
{model: 'paragraph', title: 'Paragraph', class: 'ck-heading_paragraph'},
{model: 'heading1', view: 'h1', title: 'Heading 1', class: 'ck-heading_heading1'},
{model: 'heading2', view: 'h2', title: 'Heading 2', class: 'ck-heading_heading2'}
]
}
})