I'm using Angular 5 with ngx-toastr. I have used the following code which renders HTML tag along with the message like: Hi<b>Hello</b> which is not expected.
this.toastr.warning("Hi<b>Hello</b>");
Also, I used the below code which has no console error neither any output (popup):
this.toastr.show("<font color=\"red\">Hi<b>Hello</b></red></font>",null,{
disableTimeOut: true,
tapToDismiss: false,
closeButton: true,
positionClass:'bottom-left',
enableHtml:true
});
How can I enable HTML in ngx-toastr so that message can looks like: hiHello