I am trying to send a HTML element in a message of jsonify object.
message = "Hello I am here click: <a href=\"{0}\" target=\"_blank\">{0}/a>".format(link)
response_data = {"status": "OK", "result": message}
return jsonify(response_data)
But when I am running on webpage it's coming as.
Hello I am here click: <a href="www.link.com" target=\"_blank\">www.link.com/a>"
How can I get rid of HTML a
element and it's parameter?
Expected Output:
Hello I am here click: www.link.com