The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

how to make text clickable?

Terra Frost
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 6, 2015

Say I want to make the text "title of document" link to http://domain.tld/path/to/doc.pdf . How would I do that with JIRA?

 

Here's how I'd do it with HTML:

<a href="http://domain.tld/path/to/doc.pdf">title of document</title>

 

Here's how I'd do it on github.com (which uses Markdown):

[title of document](http://domain.tld/path/to/doc.pdf)

 

Here's how I'd do it on stackoverflow:

[title of document][1]
 [1]: http://domain.tld/path/to/doc.pdf

 

What I don't know is how to do it in JIRA? Is it even possible?

 

Thanks!

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

2 votes
Answer accepted
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
November 6, 2015

It would be:

[Link to Google|https://www.google.com]
Adrien Ragot 2
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
November 6, 2015

There's a little (?) under the text field in JIRA where the markup syntax is described. This syntax comes from Wikipedia's wikimarku, except they've swapped the url and the title (and I don't see an explanation for not following the defacto standard).