0

I am trying to understand how can I pass html code to be rendered in python description field using python-jira.

If anyone can explain what is told in this link paragraph 4 and adding simple working example I will be grateful.

JavaSa
  • 5,813
  • 16
  • 71
  • 121

1 Answers1

1

It means that you will be able to enter text in the field with HTML in it. For example, you will be able to enter text like this one: {html}<a href="http://www.atlassian.com">Click here</a> to see the <b>Atlassian</b> website.{html} and it will be rendered as HTML like this:

Click here to see the Atlassian website.

For more information, please refer to the documentation of HTML Macro.

altern
  • 5,829
  • 5
  • 44
  • 72