I am trying to create an alert with HTML formatting (in the docs say I can do that) into the description field. The problem is I dont get the correct formatting with a simple <ul> and <li> tags. Am I missing something?
e.g.:
<html>
<body>
<ul>
<li>Text1</li>
<ul>
<li>Text2</li>
<ul>
<li>Text3</li>
<li>Text4</li>
</ul>
</ul>
</ul>
</body>
</html>
This dont show anything, only the Texts in new lines. Thanks for the help!!