CKeditor implementation /or any other HTML editor

We have a demo application with the PrimeNG editor. Other users have successfully implemented CKEditor too.

Here are the steps needed to use the PrimeNG editor.

  1. Install quill (needed by the PrimeNG editor) - npm install --save quill
  2. Import the files
  3. Register the module
  4. Include its CSS files.

Then you can use it like this:

<p-editor [(ngModel)]="editorValue" [style]="{'height': '200px'}"></p-editor>
1 Like