I have a string stored in my localStorage with the HTML tags since I use ngx-quill (Angular Rich Text Editor) which stores the data in HTML formatted text.
This is what my localStorage looks like:

As you can see from the picture above, in description, there is p tags.
Is there any way I can display it on Angular page without the tags?

<div [innerHTML]="item.description"></div>