8
0
Aleksander Nowodzinski 7 лет назад
Родитель
Сommit
585954ccc5
1 измененных файлов с 13 добавлено и 7 удалено
  1. 13 7
      packages/ckeditor5-easy-image/src/easyimage.js

+ 13 - 7
packages/ckeditor5-easy-image/src/easyimage.js

@@ -13,13 +13,9 @@ import Image from '@ckeditor/ckeditor5-image/src/image';
 import ImageUpload from '@ckeditor/ckeditor5-image/src/imageupload';
 
 /**
- * The Easy Image feature.
- *
- * For a detailed overview, check the {@glink features/image-upload Image upload feature documentation}
- * and the {@glink api/easy-image package page}.
- *
- * After enabling the Easy Image plugin you need to configure the [CKEditor Cloud Services](https://ckeditor.com/ckeditor-cloud-services/)
- * integration through {@link module:cloud-services/cloudservices~CloudServicesConfig `config.cloudServices`}.
+ * The Easy Image feature, which makes the image upload in CKEditor 5 possible with virtually zero
+ * server setup. A part of the [CKEditor Cloud Services](https://ckeditor.com/ckeditor-cloud-services/)
+ * family.
  *
  * This is a "glue" plugin which enables:
  *
@@ -27,6 +23,16 @@ import ImageUpload from '@ckeditor/ckeditor5-image/src/imageupload';
  * * {@link module:image/imageupload~ImageUpload},
  * * {@link module:easy-image/cloudservicesuploadadapter~CloudServicesUploadAdapter}.
  *
+ * See the {@glink features/easy-image "Easy Image integration" guide} to learn how to configure
+ * and use this feature.
+ *
+ * Check out the {@glink features/image-upload comprehensive "Image upload" guide} to learn about
+ * other ways to upload images into CKEditor 5.
+ *
+ * **Note**: After enabling the Easy Image plugin you need to configure the
+ * [CKEditor Cloud Services](https://ckeditor.com/ckeditor-cloud-services/)
+ * integration through {@link module:cloud-services/cloudservices~CloudServicesConfig `config.cloudServices`}.
+ *
  * @extends module:core/plugin~Plugin
  */
 export default class EasyImage extends Plugin {