UNPKG

ngx-editor-plus

Version:

WYSIWYG Editor for Angular Applications

25 lines (22 loc) 1.37 kB
<div class="container"> <div class="logo block"> <img src="assets/icons/ngx-editor.svg" alt="ngx-Editor"> <h6>WYSIWYG Editor for Angular Applications.</h6> <p>(Currently - <a href="https://github.com/Sibiraj-S/ngx-editor/releases/latest">{{ latestRelease['name'] }}</a>) </p> <a class="github-button" href="https://github.com/Sibiraj-S" aria-label="Follow @Sibiraj-S on GitHub">Follow @Sibiraj-S</a> <a class="github-button" href="https://github.com/Sibiraj-S/ngx-editor/fork" aria-label="Fork Sibiraj-S/ngx-editor on GitHub">Fork</a> <a class="github-button" href="https://github.com/Sibiraj-S/ngx-editor" aria-label="Star Sibiraj-S/ngx-editor on GitHub">Star</a> <a class="github-button" href="https://github.com/Sibiraj-S/ngx-editor/issues" data-show-count="true" aria-label="Issue Sibiraj-S/ngx-editor on GitHub">Issue</a> <a class="github-button" href="https://github.com/Sibiraj-S/ngx-editor/archive/master.zip" aria-label="Download Sibiraj-S/ngx-editor on GitHub">Download</a> </div> <div class="editor block"> <app-ngx-editor [config]="editorConfig" [spellcheck]="true" [(ngModel)]="htmlContent" (blur)="onBlur()"></app-ngx-editor> </div> <div *ngIf="htmlContent" class="htmlblock block"> <h6>HTML Output</h6> <div class="html"> {{ htmlContent }} </div> </div> </div>