|
@@ -6,7 +6,7 @@ CKEditor 5 balloon editor build
|
|
|
[](https://david-dm.org/ckeditor/ckeditor5-build-balloon)
|
|
[](https://david-dm.org/ckeditor/ckeditor5-build-balloon)
|
|
|
[](https://david-dm.org/ckeditor/ckeditor5-build-balloon?type=dev)
|
|
[](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
|
|
## Documentation
|
|
|
|
|
|
|
@@ -47,10 +47,10 @@ And use it in your website:
|
|
|
Or in your JavaScript application:
|
|
Or in your JavaScript application:
|
|
|
|
|
|
|
|
```js
|
|
```js
|
|
|
-import BalloonEditor from '@ckeditor/ckeditor5-build-balloon/build/ckeditor';
|
|
|
|
|
|
|
+import BalloonEditor from '@ckeditor/ckeditor5-build-balloon';
|
|
|
|
|
|
|
|
// Or using CommonJS verion:
|
|
// Or using CommonJS verion:
|
|
|
-// const BalloonEditor = require( '@ckeditor/ckeditor5-build-balloon/build/ckeditor' );
|
|
|
|
|
|
|
+// const BalloonEditor = require( '@ckeditor/ckeditor5-build-balloon' );
|
|
|
|
|
|
|
|
BalloonEditor
|
|
BalloonEditor
|
|
|
.create( document.querySelector( '#editor' ) )
|
|
.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
|
|
## License
|
|
|
|
|
|