My api response is
{
"content" : "<div><p>Some random text</p></div>"
}
I am passing the html template as value in json response content. In my application then I am trying to render the content but the output is
My output : <div><p>Some random text</p></div>
Actual output should be : Some random text
Can anyone guide what I am missing out ?