PDA

View Full Version : how to insert a link in an image description?


Berkellicht
12-22-2006, 02:47 AM
Can anybody help me with inserting a link in the image description. I used the following text.

I was <A HREF="http://www.sitename.com/index.php?showimage=83">here</A> before.

But it doesn't work. Why?

DikkieBurger
12-22-2006, 06:06 AM
You can use Markdown and HTML.

This is an [example link](http://example.com/ "With a Title").

<p>This is an <a href="http://example.com/" title="With a Title">
example link</a>.</p>


http://daringfireball.net/projects/markdown/basics

Berkellicht
12-22-2006, 12:12 PM
Yes I know that I should use Markdown. But how? Just use the <p> and </p> code doesn't work.

DikkieBurger
12-22-2006, 12:41 PM
You should use this one:

This is an [example link](http://example.com/ "With a Title").

The other is the html... :confused: