Parcourir la source

Docs: Mentioned the builds vs editors.

Piotrek Koszuliński il y a 7 ans
Parent
commit
eb3401533a

+ 6 - 2
docs/builds/guides/integration/basic-api.md

@@ -8,7 +8,7 @@ order: 20
 
 # Basic API
 
-Each CKEditor 5 build provides a different class that handles the creation of editor instances:
+Each CKEditor 5 **build** provides a different **editor class** that handles the creation of editor instances:
 
 * Classic editor – {@link module:editor-classic/classiceditor~ClassicEditor}
 * Inline editor – {@link module:editor-inline/inlineeditor~InlineEditor}
@@ -17,6 +17,10 @@ Each CKEditor 5 build provides a different class that handles the creation of ed
 
 Most of the examples in the documentation use the `ClassicEditor` class, but things should work in a similar way with other builds.
 
+<info-box>
+	A CKEditor 5 build compiles a specific editor class and a set of plugins. Using builds is the simplest way to include editor in your application, but you can also {@link builds/guides/integration/advanced-setup#scenario-2-building-from-source use the editor classes and plugins directly} for grater flexibility.
+</info-box>
+
 ## Creating an editor
 
 Regardless of the chosen build, creating an editor is done using the static `create()` method.
@@ -94,7 +98,7 @@ BalloonEditor
 	} );
 ```
 
-### Example – Document editor
+### Example – Decoupled editor
 
 Add the elements where CKEditor should initialize the toolbar and the editable to your page:
 

+ 6 - 0
docs/framework/guides/quick-start.md

@@ -113,6 +113,12 @@ Based on these packages you can create a simple application.
 	This guide is using the ES6 modules syntax. If you are not familiar with it, check out this [article](http://exploringjs.com/es6/ch_modules.html).
 </info-box>
 
+<info-box warning>
+	Note that in this guide we use the editor class directly (i.e. we use `@ckeditor/ckeditor5-editor-classic` instead of `@ckeditor/ckeditor5-build-classic`).
+
+	We do not use any of the {@link builds/guides/overview builds} because adding new plugins to them requires rebuilding them anyway. This can be done by {@link builds/guides/development/installing-plugins customizing a build} or by including CKEditor 5 source into your application (like in this guide).
+</info-box>
+
 ```js
 // app.js