| 12345678910111213141516171819 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* globals window */
- import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
- import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
- import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline';
- import Font from '@ckeditor/ckeditor5-font/src/font';
- ClassicEditor.builtinPlugins.push(
- Strikethrough,
- Underline,
- Font
- );
- window.ClassicEditor = ClassicEditor;
|