For a personal testbed project, I'm using Angular to create a small website, to show off a small game project I am working on.
One of the things I am trying to do is to make the blog entries be driven by a JSON blob. As I update the blob, people who view the Blog path of the SPA will see the updated content.
However...the HTML tags in the HTML part of the blob are rendering as clear text!
Here is my not-so-working plunker.
This is probably a very basic mistake I am making. My question: what do I do with the data I'm getting back from the $http
get's fulfilled promise, to make the HTML in the JSON blob properly render as HTML, instead of as raw text?