8
0
Просмотр исходного кода

Merge pull request #101 from ckeditor/i/5710

Docs: The Simple upload adapter installation instructions should not misguide developers about the availability of the plugin. Closes ckeditor/ckeditor5#5710.
Piotrek Koszuliński 6 лет назад
Родитель
Сommit
5f202d1d24
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      packages/ckeditor5-upload/docs/features/simple-upload-adapter.md

+ 4 - 4
packages/ckeditor5-upload/docs/features/simple-upload-adapter.md

@@ -16,16 +16,16 @@ See the [Server–side configuration](#server-side-configuration) section to lea
 
 ## Installation
 
+<info-box info>
+	The {@link module:upload/adapters/simpleuploadadapter~SimpleUploadAdapter simple upload adapter} plugin is not available out–of–the–box in any of {@link builds/guides/overview#available-builds official editor builds}. Check out the {@link builds/guides/integration/installing-plugins "Installing plugins"} guide to learn more.
+</info-box>
+
 First, install the [`@ckeditor/ckeditor5-upload`](https://www.npmjs.com/package/@ckeditor/ckeditor5-upload) package:
 
 ```bash
 npm install --save @ckeditor/ckeditor5-upload
 ```
 
-<info-box info>
-	The [`@ckeditor/ckeditor5-upload`](https://www.npmjs.com/package/@ckeditor/ckeditor5-upload) package is available by default in all {@link builds/guides/overview#available-builds official editor builds}. You do not have to install it, if you are {@link builds/guides/integration/advanced-setup#scenario-1-integrating-existing-builds extending one}.
-</info-box>
-
 Add the {@link module:upload/adapters/simpleuploadadapter~SimpleUploadAdapter `SimpleUploadAdapter`} to your plugin list and [configure](#configuration) the feature. For instance:
 
 ```js