Bladeren bron

Image resize, superscript, subscript removed from the snippet configuration.

Anna Tomanek 5 jaren geleden
bovenliggende
commit
3f71020327
1 gewijzigde bestanden met toevoegingen van 1 en 7 verwijderingen
  1. 1 7
      packages/ckeditor5-clipboard/docs/_snippets/features/build-paste-source.js

+ 1 - 7
packages/ckeditor5-clipboard/docs/_snippets/features/build-paste-source.js

@@ -7,19 +7,13 @@
 
 import ClassicEditor from '@ckeditor/ckeditor5-build-classic/src/ckeditor';
 import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
-import Subscript from '@ckeditor/ckeditor5-basic-styles/src/subscript';
-import Superscript from '@ckeditor/ckeditor5-basic-styles/src/superscript';
 import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline';
 import Font from '@ckeditor/ckeditor5-font/src/font';
-import ImageResize from '@ckeditor/ckeditor5-image/src/imageresize';
 
 ClassicEditor.builtinPlugins.push(
 	Strikethrough,
-	Subscript,
-	Superscript,
 	Underline,
-	Font,
-	ImageResize
+	Font
 );
 
 window.ClassicEditor = ClassicEditor;