build-remove-format-source.js 399 B

12345678910111213
  1. /**
  2. * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /* globals window */
  6. import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
  7. import RemoveFormat from '@ckeditor/ckeditor5-remove-format/src/removeformat';
  8. ClassicEditor.builtinPlugins.push( RemoveFormat );
  9. window.ClassicEditor = ClassicEditor;