Bladeren bron

Merge branch 'stable'

Piotrek Koszuliński 6 jaren geleden
bovenliggende
commit
74646fef81
1 gewijzigde bestanden met toevoegingen van 5 en 5 verwijderingen
  1. 5 5
      packages/ckeditor5-upload/docs/features/base64-upload-adapter.md

+ 5 - 5
packages/ckeditor5-upload/docs/features/base64-upload-adapter.md

@@ -4,17 +4,17 @@ menu-title: Base64 upload adapter
 order: 40
 ---
 
-# Base64 upload adapter
+# Base64 image upload adapter
 
-The {@link module:upload/adapters/base64uploadadapter~Base64UploadAdapter Base64 image upload adapter} plugin converts images inserted into the editor into [Base64 strings](https://en.wikipedia.org/wiki/Base64) in the {@link builds/guides/integration/saving-data editor output}.
+The {@link module:upload/adapters/base64uploadadapter~Base64UploadAdapter Base64 image upload adapter} plugin converts images inserted into the rich-text editor into [Base64-encoded strings](https://en.wikipedia.org/wiki/Base64) in the {@link builds/guides/integration/saving-data editor output}.
 
-This kind of image upload does not require server processing – images are stored with the rest of the text and displayed by the web browser without additional requests. On the downside, this approach can bloat your database with very long data strings which, in theory, could have a negative impact on the performance.
+This kind of image upload does not require any server-side processing — images are stored with the rest of the text and displayed by the web browser without additional requests. On the downside, this approach can bloat your database with very long data strings which, in theory, could have a negative impact on the performance.
 
 <info-box>
 	Check out the comprehensive {@link features/image-upload Image upload overview} to learn about other ways to upload images into CKEditor 5.
 </info-box>
 
-## Example
+## Demo
 
 Use the editor below to see the adapter in action. Open the web browser console and click the button below to see the base64–encoded image in the editor output data.
 
@@ -42,7 +42,7 @@ ClassicEditor
 	.catch( ... );
 ```
 
-Once enabled in the plugin list, the upload adapter works out–of–the–box without additional configuration.
+Once enabled in the plugin list, the Base64 image upload adapter works out–of–the–box without any additional configuration.
 
 <info-box info>
 	Read more about {@link builds/guides/integration/installing-plugins installing plugins}.