Render Wordpress Content in ionic angular app

I’m new in ionic
and I have connected ionic app with WordPress website built with “Wpbakery
page builder using REST API
but i have a problem : While i am trying to view this code Below in my App

<div>
  {{ info.content.rendered }}
</div>

it just show the HTML tags that comes from JSON and looks like this

is There any way to Fix this!

maybe you need to use something like

<div [innetHTML]=" info.content.rendered">
</div>

doesn’t show anything , everything is gone

1 Like

sorry there’s a typo:
[innerHTML]=" info.content.rendered"

try this one

2 Likes

it works
Thank you so much , now i can style this content right?

Yes you can, its a normal html content.

Thank you , You Are Amazing

1 Like