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

Docs: Improved editors and builds docs.

Piotrek Koszuliński 8 лет назад
Родитель
Сommit
f82a0db000
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      packages/ckeditor5-build-balloon/README.md

+ 4 - 4
packages/ckeditor5-build-balloon/README.md

@@ -6,7 +6,7 @@ CKEditor 5 balloon editor build
 [![Dependency Status](https://david-dm.org/ckeditor/ckeditor5-build-balloon/status.svg)](https://david-dm.org/ckeditor/ckeditor5-build-balloon)
 [![devDependency Status](https://david-dm.org/ckeditor/ckeditor5-build-balloon/dev-status.svg)](https://david-dm.org/ckeditor/ckeditor5-build-balloon?type=dev)
 
-The balloon editor build. Read more in the [balloon editor](https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/builds/guides/overview.html#Balloon-editor) and see the [demo](https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/examples/builds/balloon-editor.html).
+The balloon editor build. Read more about the [balloon editor build](https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/builds/guides/overview.html#Balloon-editor) and see the [demo](https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/examples/builds/balloon-editor.html).
 
 ## Documentation
 
@@ -47,10 +47,10 @@ And use it in your website:
 Or in your JavaScript application:
 
 ```js
-import BalloonEditor from '@ckeditor/ckeditor5-build-balloon/build/ckeditor';
+import BalloonEditor from '@ckeditor/ckeditor5-build-balloon';
 
 // Or using CommonJS verion:
-// const BalloonEditor = require( '@ckeditor/ckeditor5-build-balloon/build/ckeditor' );
+// const BalloonEditor = require( '@ckeditor/ckeditor5-build-balloon' );
 
 BalloonEditor
 	.create( document.querySelector( '#editor' ) )
@@ -62,7 +62,7 @@ BalloonEditor
 	} );
 ```
 
-**Note:** If you are planning to integrate CKEditor 5 deep into your application it is actually more convenient and recommended to install and import the source modules directly (like it happens in `ckeditor.js`). Read more in the [Bundling guide](https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/builds/guides/integration/bundling.html).
+**Note:** If you are planning to integrate CKEditor 5 deep into your application it is actually more convenient and recommended to install and import the source modules directly (like it happens in `ckeditor.js`). Read more in the [Advanced setup guide](https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/builds/guides/integration/advanced-setup.html).
 
 ## License