You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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!!
Hi @Fran Moya
The unsorted list is rendered without bullet points, the list items are however rendered as indented text. Also note that whenever you end a line with a "close element" statement (</p>, </ul>, </li>......) it creates a blank line, also note that lines containing only HTML elements also render as a blank line, it is best to include all elements and data relating to a list in a single line, please see the below example:
<html>
<p>This is regular text</p>
<ul><li>indented list item1</li><li>indented list item2</li><li>indented list item3</li></ul>
</html>
This is expected to render like this:
This is regular text
indented list item1
indented list item2
indented list item3
I hope this answers the question :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.