I am using Python Django as REST API, Angular-2 as front end. With every request, I am getting a response in form of JSON. I want to highlight a few words in my JSON response. So I want to add few HTML tags like <b> from the Python code itself and the browser should render it as HTML <b> tag only.
But the browser doesn't understand <b> coming with in JSON response and displays as plain text only.