JavaScript
import {
ClassicEditor,
AccessibilityHelp,
Autoformat,
AutoImage,
Autosave,
BlockQuote,
Bold,
Essentials,
FontBackgroundColor,
FontColor,
FontFamily,
FontSize,
FullPage,
GeneralHtmlSupport,
Heading,
Highlight,
HtmlComment,
HtmlEmbed,
ImageBlock,
ImageInsertViaUrl,
ImageToolbar,
Indent,
IndentBlock,
Italic,
Link,
List,
ListProperties,
Paragraph,
RemoveFormat,
SelectAll,
ShowBlocks,
SourceEditing,
Table,
TableCaption,
TableCellProperties,
TableColumnResize,
TableProperties,
TableToolbar,
TextTransformation,
TodoList,
Underline,
Undo
} from 'ckeditor5';
const editorConfig = {
toolbar: {
items: [
'undo',
'redo',
'|',
'sourceEditing',
'showBlocks',
'|',
'heading',
'|',
'fontSize',
'fontFamily',
'fontColor',
'fontBackgroundColor',
'|',
'bold',
'italic',
'underline',
'removeFormat',
'|',
'link',
'insertImageViaUrl',
'insertTable',
'highlight',
'blockQuote',
'htmlEmbed',
'|',
'bulletedList',
'numberedList',
'todoList',
'outdent',
'indent'
],
shouldNotGroupWhenFull: true
},
plugins: [
AccessibilityHelp,
Autoformat,
AutoImage,
Autosave,
BlockQuote,
Bold,
Essentials,
FontBackgroundColor,
FontColor,
FontFamily,
FontSize,
FullPage,
GeneralHtmlSupport,
Heading,
Highlight,
HtmlComment,
HtmlEmbed,
ImageBlock,
ImageInsertViaUrl,
ImageToolbar,
Indent,
IndentBlock,
Italic,
Link,
List,
ListProperties,
Paragraph,
RemoveFormat,
SelectAll,
ShowBlocks,
SourceEditing,
Table,
TableCaption,
TableCellProperties,
TableColumnResize,
TableProperties,
TableToolbar,
TextTransformation,
TodoList,
Underline,
Undo
],
fontFamily: {
supportAllValues: true
},
fontSize: {
options: [10, 12, 14, 'default', 18, 20, 22],
supportAllValues: true
},
heading: {
options: [
{
model: 'paragraph',
title: 'Paragraph',
class:...