build-paste-source.js 597 B

12345678910111213141516171819
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. /* globals window */
  6. import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
  7. import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
  8. import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline';
  9. import Font from '@ckeditor/ckeditor5-font/src/font';
  10. ClassicEditor.builtinPlugins.push(
  11. Strikethrough,
  12. Underline,
  13. Font
  14. );
  15. window.ClassicEditor = ClassicEditor;