浏览代码

Docs: Minor corrections in Custom builds and Installing plugins. [skip ci]

Anna Tomanek 7 年之前
父节点
当前提交
d64969b36f

文件差异内容过多而无法显示
+ 3 - 3
docs/builds/guides/development/custom-builds.md


+ 6 - 6
docs/builds/guides/integration/installing-plugins.md

@@ -29,7 +29,7 @@ Adding plugins to existing builds is done through their customization. Editor bu
 3. Add it to the build configuration.
 4. Bundle the build.
 
-```
+```bash
 git clone -b stable https://github.com/ckeditor/ckeditor5-build-classic.git
 cd ckeditor5-build-classic
 npm install
@@ -37,7 +37,7 @@ npm install
 
 Now, install the plugin package:
 
-```
+```bash
 npm install --save-dev @ckeditor/ckeditor5-alignment
 ```
 
@@ -122,7 +122,7 @@ ClassicEditor.defaultConfig = {
 
 Finally, bundle the build:
 
-```
+```bash
 npm run build
 ```
 
@@ -142,7 +142,7 @@ If you {@link framework/guides/quick-start build the editor from source}, then t
 
 For example, if you wish to install the text alignment feature:
 
-```
+```bash
 npm install --save-dev @ckeditor/ckeditor5-alignment
 ```
 
@@ -200,7 +200,7 @@ ClassicEditor
 	} );
 ```
 
-All this works because a typical `src/ckeditor.js` module that you can find in every editor build repository (see e.g. [`@ckeditor/ckeditor5-build-classic`](https://github.com/ckeditor/ckeditor5-build-classic/blob/stable/src/ckeditor.js)) looks like this:
+All this works because a typical `src/ckeditor.js` module that you can find in every editor build repository (see for example [`@ckeditor/ckeditor5-build-classic`](https://github.com/ckeditor/ckeditor5-build-classic/blob/stable/src/ckeditor.js)) looks like this:
 
 ```js
 import ClassicEditorBase from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
@@ -236,7 +236,7 @@ ClassicEditor.defaultConfig = {
 };
 ```
 
-This code imports the source of the classic editor and extends it with a static `builtinPlugins` and `defaultConfig` properties in which it defines a set of plugins and configuration to be used by this editor class.
+This code imports the source of the classic editor and extends it with a static `builtinPlugins` and `defaultConfig` properties where it defines a set of plugins and configuration to be used by this editor class.
 
 In this approach, all editor instances created by using this editor build will by default load all these built-in plugins and configuration.