user8456867
user8456867

Reputation:

How can I dispaly ngx-quill rich text editor data from database to a page for view mode

I have angular project and I have used ngx-quill rich text editor, it works perfect when add new records or edit records and it stores the result in database. now I want to display the result from rich text to a component it display like this:

<p>And this is some text<strong> this is another text</strong></p>

Upvotes: 0

Views: 1087

Answers (1)

MJ X
MJ X

Reputation: 9054

This line of code will do it for you:)

<div [innerHTML]="yourContent"></div>

for more info: https://angular.io/guide/template-syntax#!#other-bindings

Upvotes: 1

Related Questions