Skip to content

EduGomes18/ckeditor5-full

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CKEditor 5 with all utilities plugins

To install:

npm i ckeditor5-custom-build-full

To use:

import { CKEditor } from "@ckeditor/ckeditor5-react";
import FullEditor from "ckeditor5-custom-build-full/build/ckeditor.js";

const Editor = ({ onChange, name, value }) => {
  return (
    <CKEditor
      editor={FullEditor}
      data={value}
      onChange={(event, editor) => {
        const data = editor.getData();
        onChange({ target: { name, value: data } });
      }}
    />
  );
};

About

CKEditor 5 with all plugins build.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published