Description:
A simple native WYSIWYG Editor for Angular Apps. Based on the
Ngx-Bootstrap
and Font Awesome iconic font.
Installation:
# Yarn
$ yarn add ngx-editor
# NPM
$ npm install ngx-editor --save
Basic usage
1. Import the necessary modules.
import { FormsModule } from '@angular/forms';
import { NgxEditorModule } from 'ngx-editor';
@NgModule({
imports: [NgxEditorModule],
export class AppModule {}
2. Add the native WYSIWYG editor to the app.
<ngx-editor [ngModel]="jsonDoc"></ngx-editor>
Preview: