Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to put a unicode character in a jira description

Tags:

utf-8

jira

I want o put a downward chevron in my jira ticket description. THe opposite of ^ I have the unicode number but I'm not sure of a way of adding this to the description. Is this possible?

(To give some background Im trying to draw a one to many db line)

Thanks

like image 235
RNJ Avatar asked Mar 14 '14 11:03

RNJ


1 Answers

Even in Jira 6.4.x I couldn't find an out-of-the-box-solution. But provided that you or your Jira administrator enabled the "html" module of the "Wiki Renderers Macro Plugin" (and the Wiki Style Renderer is used for the description field) you could use the following workaround with the HTML entity of the Unicode character:

{html}⌄{html}

Due to XSS security implications the html module is disabled by default and shouldn't be enabled without careful consideration - at least for public Jira instances.

like image 112
x-ray Avatar answered Sep 20 '22 02:09

x-ray