ng-rt-editor
v0.0.7
Published
Angular Rich Text Editor is an Angular(>=2) module which can be integrated in your existing applications
Maintainers
Readme
ng-rt-editor
Angular Rich Text Editor is an Angular(>=2) module which can be integrated in your existing applications
Demo
Installation
Using NPM
$ npm install ng-rt-editor@<version>Getting Started
To get up and running Rich text editor on your system follow below steps:
Add
RtEditorModuletoimportsinsrc/app/app.module.ts:import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { RtEditorModule } from 'ng-rt-edtitor'; @NgModule({ imports: [ BrowserModule, RtEditorModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { }Use the component in the html
src/app/app.component.html:<rt-editor></rt-editor>
