Skip to content

CKEditor 5 editor build generated by the Online builder tool

License

Notifications You must be signed in to change notification settings

PeterNelsonT/ckeditor-online

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ckeditor-online

CKEditor 5 editor build generated by the Online builder tool

Install

npm i ckeditor-online

Usage

import { CKEditor } from "@ckeditor/ckeditor5-react";
import Editor from "ckeditor-online";

export function RichTextEditor() {
  return (
    <CKEditor
      editor={Editor}
      data="<p>Hello from CKEditor 5!</p>"
      onChange={(event: any, editor: { getData: () => any }) => {
        const data = editor.getData();
        console.log({ event, editor, data });
      }}
    />
  );
}

ckeditor-online demo

About

CKEditor 5 editor build generated by the Online builder tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published