ckeditor5-custom-c
v0.0.4
Published
A custom CKEditor 5 build with basic functionality
Downloads
6
Maintainers
Readme
CKEditor 5 editor With Mathtype and imageresize plugin
To install:
npm i ckeditor5-custom-build-mathtype-imageresize
To use:
import { CKEditor } from "@ckeditor/ckeditor5-react";
import ClassicEditor from "ckeditor5-custom-build-mathtype-imageresize";
const Editor = ({ onChange, value }) => {
return (
<CKEditor
editor={ClassicEditor}
data={value}
onChange={(event, editor) => {
const data = editor.getData();
onChange(data);
}}
/>
);
};