UNPKG

check-editor-custom-tr

Version:

A custom CKEditor 5 build made by the CKEditor 5 online builder.

196 lines (191 loc) 6.7 kB
/** * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor.js'; import Alignment from '@ckeditor/ckeditor5-alignment/src/alignment.js'; import Autoformat from '@ckeditor/ckeditor5-autoformat/src/autoformat.js'; import Base64UploadAdapter from '@ckeditor/ckeditor5-upload/src/adapters/base64uploadadapter.js'; import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote.js'; import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold.js'; import CloudServices from '@ckeditor/ckeditor5-cloud-services/src/cloudservices.js'; import Code from '@ckeditor/ckeditor5-basic-styles/src/code.js'; import DataFilter from '@ckeditor/ckeditor5-html-support/src/datafilter.js'; import DataSchema from '@ckeditor/ckeditor5-html-support/src/dataschema.js'; import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials.js'; import FindAndReplace from '@ckeditor/ckeditor5-find-and-replace/src/findandreplace.js'; import FontBackgroundColor from '@ckeditor/ckeditor5-font/src/fontbackgroundcolor.js'; import FontColor from '@ckeditor/ckeditor5-font/src/fontcolor.js'; import FontFamily from '@ckeditor/ckeditor5-font/src/fontfamily.js'; import FontSize from '@ckeditor/ckeditor5-font/src/fontsize.js'; import GeneralHtmlSupport from '@ckeditor/ckeditor5-html-support/src/generalhtmlsupport.js'; import Heading from '@ckeditor/ckeditor5-heading/src/heading.js'; import Highlight from '@ckeditor/ckeditor5-highlight/src/highlight.js'; import HorizontalLine from '@ckeditor/ckeditor5-horizontal-line/src/horizontalline.js'; import HtmlComment from '@ckeditor/ckeditor5-html-support/src/htmlcomment.js'; import HtmlEmbed from '@ckeditor/ckeditor5-html-embed/src/htmlembed.js'; import Image from '@ckeditor/ckeditor5-image/src/image.js'; import ImageCaption from '@ckeditor/ckeditor5-image/src/imagecaption.js'; import ImageInsert from '@ckeditor/ckeditor5-image/src/imageinsert.js'; import ImageResize from '@ckeditor/ckeditor5-image/src/imageresize.js'; import ImageStyle from '@ckeditor/ckeditor5-image/src/imagestyle.js'; import ImageToolbar from '@ckeditor/ckeditor5-image/src/imagetoolbar.js'; import ImageUpload from '@ckeditor/ckeditor5-image/src/imageupload.js'; import Indent from '@ckeditor/ckeditor5-indent/src/indent.js'; import IndentBlock from '@ckeditor/ckeditor5-indent/src/indentblock.js'; import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic.js'; import Link from '@ckeditor/ckeditor5-link/src/link.js'; import LinkImage from '@ckeditor/ckeditor5-link/src/linkimage.js'; import List from '@ckeditor/ckeditor5-list/src/list.js'; import ListProperties from '@ckeditor/ckeditor5-list/src/listproperties.js'; import MediaEmbed from '@ckeditor/ckeditor5-media-embed/src/mediaembed.js'; import Mention from '@ckeditor/ckeditor5-mention/src/mention.js'; import PageBreak from '@ckeditor/ckeditor5-page-break/src/pagebreak.js'; import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph.js'; import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice.js'; import RemoveFormat from '@ckeditor/ckeditor5-remove-format/src/removeformat.js'; import SelectAll from '@ckeditor/ckeditor5-select-all/src/selectall.js'; import SourceEditing from '@ckeditor/ckeditor5-source-editing/src/sourceediting.js'; import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough.js'; import Style from '@ckeditor/ckeditor5-style/src/style.js'; import Subscript from '@ckeditor/ckeditor5-basic-styles/src/subscript.js'; import Superscript from '@ckeditor/ckeditor5-basic-styles/src/superscript.js'; import Table from '@ckeditor/ckeditor5-table/src/table.js'; import TableCaption from '@ckeditor/ckeditor5-table/src/tablecaption.js'; import TableCellProperties from '@ckeditor/ckeditor5-table/src/tablecellproperties'; import TableColumnResize from '@ckeditor/ckeditor5-table/src/tablecolumnresize.js'; import TableProperties from '@ckeditor/ckeditor5-table/src/tableproperties'; import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar.js'; import TextPartLanguage from '@ckeditor/ckeditor5-language/src/textpartlanguage.js'; import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation.js'; import TodoList from '@ckeditor/ckeditor5-list/src/todolist'; import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline.js'; import WordCount from '@ckeditor/ckeditor5-word-count/src/wordcount.js'; class Editor extends ClassicEditor {} // Plugins to include in the build. Editor.builtinPlugins = [ Alignment, Autoformat, Base64UploadAdapter, BlockQuote, Bold, CloudServices, Code, DataFilter, DataSchema, Essentials, FindAndReplace, FontBackgroundColor, FontColor, FontFamily, FontSize, GeneralHtmlSupport, Heading, Highlight, HorizontalLine, HtmlComment, HtmlEmbed, Image, ImageCaption, ImageInsert, ImageResize, ImageStyle, ImageToolbar, ImageUpload, Indent, IndentBlock, Italic, Link, LinkImage, List, ListProperties, MediaEmbed, Mention, PageBreak, Paragraph, PasteFromOffice, RemoveFormat, SelectAll, SourceEditing, Strikethrough, Style, Subscript, Superscript, Table, TableCaption, TableCellProperties, TableColumnResize, TableProperties, TableToolbar, TextPartLanguage, TextTransformation, TodoList, Underline, WordCount ]; // Editor configuration. Editor.defaultConfig = { toolbar: { items: [ 'heading', 'alignment', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', '|', 'outdent', 'indent', '|', 'imageUpload', 'blockQuote', 'insertTable', 'undo', 'redo', 'code', 'fontFamily', 'fontColor', 'fontBackgroundColor', 'findAndReplace', 'fontSize', 'htmlEmbed', 'horizontalLine', 'highlight', 'imageInsert', 'pageBreak', 'removeFormat', 'selectAll', 'sourceEditing', 'strikethrough', 'style', 'subscript', 'superscript', 'todoList', 'textPartLanguage', 'underline' ] }, language: 'en', image: { toolbar: [ 'imageTextAlternative', 'toggleImageCaption', 'imageStyle:inline', 'imageStyle:block', 'imageStyle:side', 'linkImage' ] }, table: { contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells', 'tableCellProperties', 'tableProperties' ] } }; export default Editor;