How to make an image clickable in a jira comment, so it appears as if you clicked on an attached image in the attachment area?

I am talking about a desktop browser, for example. chromium. In jira, if I attach an image, I can use it in my comment - and that's great! I usually use width=800px , so the whole image can be seen in the comment.

So, I can write something like this:

Here is a screenshot

!my-screenshot-image.jpg|width=600px!

The problem is that sometimes the screen shot is too large and when reduced to a smaller size, for example. 600px, not readable .
When you click on an image in the attached files area, it appears, and this is what I want in the comments section.

I was wondering if there is a parameter for this to happen? Is there a list of options that can be used when embedding an image somewhere? It seems I just found the width parameter.

PS When you open a jira ticket on Mobile - it looks great, and the image is really clickable - when you click on it, a page with the image in it opens.

+8
jira
source share
2 answers

You want this to allow a small image in a comment in the expanded view of a larger window:

 !my-screenshot-image.jpg|thumbnail! 

As a source for JIRA 6.3, the following valid attributes for images are:

 align border bordercolor alt title longdesc height width src lang dir hspace vspace ismap usemap id class 
+11
source share

This one works for me.

! my-screenshot-image.jpg | thumbnail, width = 800 pixels!

-one
source share

All Articles