I'm currently working on integrating HTML content into a Sweet Alert popup using this code snippet
this.$swal({
title: '<i>Custom HTML</i>',
html:`This is an <em> emphasized text </em>, <a href="#">links</a><strong>And other tags</strong>`,
showCloseButton: true,
showCancelButton: true,
focusConfirm: false,
});
However, I am facing an issue where the HTML content is not being rendered properly. The title is visible but even within the title, the HTML is not rendered as expected.