16.1.5 • Published 5 years ago
@oriduk/ckeditor5-rebuild-musicanote v16.1.5
CKEditor 5 rebuild for uploading image file to Firebase
The classic editor build for CKEditor 5. Read more about the classic editor build and see the demo.
Documentation
See:
- Installation for how to install this package and what it contains.
- Basic API for how to create an editor and interact with it.
- Configuration for how to configure the editor.
- Creating custom builds for how to customize the build (configure and rebuild the editor bundle).
Quick start
First, install the build from npm:
npm install --save @oriduk/ckeditor5-rebuild-musicanote
And use it in your website:
//import editor
import ClassicEditor from "@oriduk/ckeditor5-rebuild-oriduk";
const config = {
//.. your firebase API key here
};
return (
<CKEditor
config={{
bucket: `product/${userID}`,
firebaseConfig: Config,
}}
editor={ClassicEditor}
data={}
/>
);
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.
License
Licensed under the terms of GNU General Public License Version 2 or later. For full details about the license, please check the LICENSE.md
file or https://ckeditor.com/legal/ckeditor-oss-license.