The markdown ![[image][1]][1] renders a broken tag:

image">

share|improve this question
You're trying to make an image that has URL syntax as a tooltip? If you want to make an image that links, you want the ! inside like [![image][1]][2]. Still doesn't change that there is a broken HTML tag, though... – Grace Note Feb 4 '11 at 20:09
@Grace: I know. I discovered this by accident. – SLaks Feb 4 '11 at 20:10
Very related: meta.stackoverflow.com/a/106811/115866 – balpha Jan 12 '12 at 8:59

2 Answers

up vote 0 down vote accepted

I don't think what you're trying to do makes sense.. even a little.

Have a peek:

http://babelmark.bobtfish.net/?markdown=%21%5B%5Bimage%5D%5B1%5D%5D%5B1%5D%0D%0A%0D%0A%5B1%5D%3A+http%3A%2F%2Fgoogle.com

This is well into WTF? territory.

Instead I suggest something more sane:

![http://i.stack.imgur.com/z1f8A.png][1]

  [1]: http://i.stack.imgur.com/z1f8A.png

http://i.stack.imgur.com/z1f8A.png

share|improve this answer
I realize that this is invalid syntax. However, it's also a bug; it shouldn't emit a broken tag. – SLaks Feb 28 '11 at 3:48
I haven't analysed this for XSS holes yet. – SLaks Feb 28 '11 at 3:50
@SLaks: There shouldn't be one. You can produce the identical output by just writing image"> yourself instead of using this syntax to produce it. – balpha Feb 28 '11 at 7:33

Confirmed

image">

![[image](http://www.vightel.com/rw_common/themes/blendit/images/header/image4.jpg)](http://www.vightel.com/)

I'm assuming you're trying to wrap an image in a link.

And there is an interesting difference between the preview and actual rendering:

enter image description here

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged