瀏覽代碼

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

Anna Tomanek 5 年之前
父節點
當前提交
3f71020327
共有 1 個文件被更改,包括 1 次插入7 次删除
  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;