Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 854 Bytes

ck-editor.md

File metadata and controls

20 lines (18 loc) · 854 Bytes

N-CKEDITOR

N-Ckeditor provides ready-to-use rich text editors created with a powerful framework. Made with real-time collaborative editing in mind. Its is build using the primary open-source project named CKEditor.

Quick start

  • Downoload n-ckeditor component from marketplace using the plugin manager.
  • Drag and drop a component from the palette list to you page
  • Install the following packages:
$ npm install --save @ckeditor/ckeditor5-build-classic
  • After installing the above package, initialize the instance of classic editor to your component (TS)
export class MyComponent {
    Editor = ClassicEditor;
    // ...
}
  • Assign the Editor varible to your component attribute named [editor]
  • Save the page and run your application